Skip to content

Commit

Permalink
fixed judging admin
Browse files Browse the repository at this point in the history
  • Loading branch information
DonaldKLee committed Nov 7, 2024
1 parent 1e55c50 commit 3ee8348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Input/ToggleSwitch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ToggleSwitchContainer = styled.div`
const ToggleSwitchGraphic = styled.div`
width: 35px;
height: 30px;
background: ${p => p.theme.colors.border};
background: ${p => p.theme.colors.input.border};
z-index: 0;
cursor: pointer;
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion src/containers/JudgingPanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const JudgingPanel = () => {

const setProjectsAndStats = async () => {
setLoading(true)
setGradedProjects(await getGradedProjects(dbHackathonName))
setGradedProjects(await getGradedProjects(2, dbHackathonName))
setGrades(await getGrades(dbHackathonName))
getStats(dbHackathonName).then(data => setStats(data))
setLoading(false)
Expand Down

0 comments on commit 3ee8348

Please sign in to comment.