mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
Fixed Compileation Issues
This commit is contained in:
parent
c9313ff5f0
commit
93e3201cf7
2 changed files with 1 additions and 4 deletions
|
@ -1,8 +1,5 @@
|
||||||
# Tasko: The Open-Source Task Management App
|
# Tasko: The Open-Source Task Management App
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> Development on this project is currently paused.
|
|
||||||
|
|
||||||
> [!WARNING]
|
> [!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**.
|
> **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**.
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ import { Skeleton } from '@/components/ui/skeleton';
|
||||||
const ActivityPage = async ({
|
const ActivityPage = async ({
|
||||||
searchParams,
|
searchParams,
|
||||||
}: {
|
}: {
|
||||||
searchParams: { [key: string]: string | undefined };
|
searchParams: Promise<Record<string, string | undefined>>;
|
||||||
}) => {
|
}) => {
|
||||||
const isPro = await checkSubscription();
|
const isPro = await checkSubscription();
|
||||||
const { orgId } = await auth();
|
const { orgId } = await auth();
|
||||||
|
|
Loading…
Reference in a new issue