diff --git a/README.md b/README.md index b0004fd..dc093b1 100644 --- a/README.md +++ b/README.md @@ -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**. diff --git a/app/(platform)/(dashboard)/organization/[organizationId]/activity/page.tsx b/app/(platform)/(dashboard)/organization/[organizationId]/activity/page.tsx index 343d485..42415fd 100644 --- a/app/(platform)/(dashboard)/organization/[organizationId]/activity/page.tsx +++ b/app/(platform)/(dashboard)/organization/[organizationId]/activity/page.tsx @@ -13,7 +13,7 @@ import { Skeleton } from '@/components/ui/skeleton'; const ActivityPage = async ({ searchParams, }: { - searchParams: { [key: string]: string | undefined }; + searchParams: Promise>; }) => { const isPro = await checkSubscription(); const { orgId } = await auth();