Skip to content

Commit cef8dbd

Browse files
committed
whoops fixed judging page
1 parent 9db3713 commit cef8dbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/judging/JudgingTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { useState } from "react";
44

55
import type { Schema } from "@/amplify/data/resource";
6-
import KevinKevinLoadingRing from "@/components/KevinKevinLoadingRing";
6+
import KevinLoadingRing from "@/components/KevinLoadingRing";
77
import { useUser } from "@/components/contexts/UserContext";
88
import ModalPopup from "@/components/judging/ModalPopup";
99
import ScoresTable from "@/components/judging/ScoresTable";
@@ -55,7 +55,7 @@ export default function JudgingTable({
5555
});
5656
const isFetching = roomIsFetching && teamsForRoomIsFetching;
5757
if (isFetching || !roomData || !teamsForRoomData) {
58-
return <KevinKevinLoadingRing />;
58+
return <KevinLoadingRing />;
5959
}
6060
async function getFilteredTeamsCount() {
6161
// https://medium.com/@debbs119/array-filter-and-array-map-with-async-functions-9636e1ae8d6e --> why it needs to map to a boolean array first

0 commit comments

Comments
 (0)