Spaces:
Running
Running
Yuvraj Sarathe commited on
Commit ·
b632b90
1
Parent(s): c1d1230
fix: add missing import dynamic from next/dynamic
Browse files- .gitignore +1 -0
- frontend/src/app/dashboard/page.tsx +1 -0
.gitignore
CHANGED
|
@@ -29,3 +29,4 @@ Thumbs.db
|
|
| 29 |
# Misc
|
| 30 |
*.log
|
| 31 |
static/
|
|
|
|
|
|
| 29 |
# Misc
|
| 30 |
*.log
|
| 31 |
static/
|
| 32 |
+
.planning/
|
frontend/src/app/dashboard/page.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
"use client";
|
| 2 |
|
| 3 |
import { useEffect, useState, useCallback } from "react";
|
|
|
|
| 4 |
import { useRouter } from "next/navigation";
|
| 5 |
import { useAuth } from "@/lib/auth";
|
| 6 |
import { api, CONNECTION_ERROR_BANNER_MESSAGE, CONNECTION_ERROR_MESSAGE } from "@/lib/api";
|
|
|
|
| 1 |
"use client";
|
| 2 |
|
| 3 |
import { useEffect, useState, useCallback } from "react";
|
| 4 |
+
import dynamic from "next/dynamic";
|
| 5 |
import { useRouter } from "next/navigation";
|
| 6 |
import { useAuth } from "@/lib/auth";
|
| 7 |
import { api, CONNECTION_ERROR_BANNER_MESSAGE, CONNECTION_ERROR_MESSAGE } from "@/lib/api";
|