Skip to content

Commit

Permalink
Comment to start PR
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblurie29 committed Sep 7, 2023
1 parent d1214ea commit ced3b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/Organizer/OrganizerDash.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function OrganizerDash() {
return (await res.json()) as TeamData[];
});

// Get scores data from API
// Get scores data from the API
const { data: scoresData, error: scoresError } = useSWR('/api/scores', async url => {
const res = await fetch(url, { method: 'GET' });
if (!res.ok) {
Expand Down

1 comment on commit ced3b05

@zineanteoh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Please sign in to comment.