File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
frontend/src/app/(auth)/leetcode-dashboard Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import { HiOutlinePencil } from "react-icons/hi";
24
24
import { FaRegTrashAlt } from "react-icons/fa" ;
25
25
import { getLeetcodeDashboardData } from "@/api/leetcode-dashboard" ;
26
26
import { QuestionMinified } from "@/types/find-match" ;
27
+ import MoonLoader from "react-spinners/MoonLoader" ;
27
28
28
29
const Cell = ( {
29
30
className,
@@ -151,11 +152,10 @@ export function LeetcodeDashboardTable() {
151
152
) )
152
153
) : (
153
154
< TableRow >
154
- < TableCell
155
- colSpan = { columns . length }
156
- className = "h-24 text-center"
157
- >
158
- No results.
155
+ < TableCell colSpan = { columns . length } >
156
+ < div className = "w-full flex justify-center items-center" >
157
+ < MoonLoader color = "#FFFFFF" size = "30" />
158
+ </ div >
159
159
</ TableCell >
160
160
</ TableRow >
161
161
) }
You can’t perform that action at this time.
0 commit comments