We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0cbecc commit 458a188Copy full SHA for 458a188
web/src/components/predictions/leaderboard.js
@@ -10,7 +10,7 @@ const Leaderboard = ({ user }) => {
10
const [admin, adminLoading, adminError] = useObject(
11
firebase.database().ref("admins/" + user.uid)
12
);
13
-
+
14
const [names, namesLoading, namesError] = useObject(
15
firebase.database().ref("public")
16
@@ -102,7 +102,7 @@ const Leaderboard = ({ user }) => {
102
</Box>
103
)}
104
<Spacer height={3} />
105
- {/*if user.uid matches below, then a button is rendered that allows for updating all scores*/}
+ {/*if user.uid matches any admin uid, then a button is rendered that allows for updating all scores*/}
106
{!adminError && !adminLoading && admin && <UpdateScore />}
107
</div>
108
0 commit comments