File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3
3
import { useState } from "react" ;
4
4
5
5
import type { Schema } from "@/amplify/data/resource" ;
6
- import KevinKevinLoadingRing from "@/components/KevinKevinLoadingRing " ;
6
+ import KevinLoadingRing from "@/components/KevinLoadingRing " ;
7
7
import { useUser } from "@/components/contexts/UserContext" ;
8
8
import ModalPopup from "@/components/judging/ModalPopup" ;
9
9
import ScoresTable from "@/components/judging/ScoresTable" ;
@@ -55,7 +55,7 @@ export default function JudgingTable({
55
55
} ) ;
56
56
const isFetching = roomIsFetching && teamsForRoomIsFetching ;
57
57
if ( isFetching || ! roomData || ! teamsForRoomData ) {
58
- return < KevinKevinLoadingRing /> ;
58
+ return < KevinLoadingRing /> ;
59
59
}
60
60
async function getFilteredTeamsCount ( ) {
61
61
// https://medium.com/@debbs 119/array-filter-and-array-map-with-async-functions-9636e1ae8d6e --> why it needs to map to a boolean array first
You can’t perform that action at this time.
0 commit comments