Fixed Compileation Issues

This commit is contained in:
Ahmad 2024-11-01 22:15:06 -04:00
parent c9313ff5f0
commit 93e3201cf7
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
2 changed files with 1 additions and 4 deletions

View file

@ -1,8 +1,5 @@
# Tasko: The Open-Source Task Management App
> [!NOTE]
> Development on this project is currently paused.
> [!WARNING]
> **This website is still in a alpha state**. There will be lots of bugs and broken/missing features. This website **IS NOT** production ready and lots of essential features are missing such as data encryption. This application can also break at any time and all of your data could be lost. **Uptime for this project is not guaranteed**.

View file

@ -13,7 +13,7 @@ import { Skeleton } from '@/components/ui/skeleton';
const ActivityPage = async ({
searchParams,
}: {
searchParams: { [key: string]: string | undefined };
searchParams: Promise<Record<string, string | undefined>>;
}) => {
const isPro = await checkSubscription();
const { orgId } = await auth();