Skip to content

Commit cb60649

Browse files
Fix firebase cfg defaults
1 parent e9e88c3 commit cb60649

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

functions/auth/oauth_callback.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
) # set to https://us-central1-hackncsu-today.cloudfunctions.net/oauth_callback for prod deploys
2424
FRONTEND_AUTH_URI = StringParam(
2525
"FRONTEND_AUTH_URI",
26-
default="http://localhost:8080/auth ",
26+
default="http://localhost:8080/auth",
2727
description="The frontend URI to redirect to after authentication is complete.",
2828
) # set to https://today.hackncstate.org/auth for prod deploys
29-
# set to https://hackncsu-today--dev-maisszg5.web.app/auth for dev deploys
29+
# set to https://hackncsu-today--dev-2clduajf.web.app/auth for dev deploys
3030

3131
SPREADSHEET_URL = StringParam(
3232
"REGISTRATION_SPREADSHEET_URL",

src/components/TeamForm.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,25 @@ export interface TeamFormSubmitPayload {
4949
mentoringHelp: string;
5050
challenges: string[];
5151
memberIds: string[];
52-
};
52+
}
5353

5454
interface TrackOption {
5555
name: string;
5656
description?: string;
57-
};
57+
}
5858

5959
interface ChallengeOption {
6060
name: string;
6161
description?: string;
62-
};
62+
}
6363

6464
interface TeamFormInitialValues {
6565
name: string;
6666
track: string;
6767
mentoringHelp: string;
6868
challenges: string[];
6969
members: PartialParticipant[];
70-
};
70+
}
7171

7272
interface TeamFormProps {
7373
tracks: TrackOption[];
@@ -385,7 +385,10 @@ export default function TeamForm({
385385
{!loading &&
386386
query.length >= 2 &&
387387
filteredSearchResults.length === 0 && (
388-
<CommandEmpty>No users found.</CommandEmpty>
388+
<CommandEmpty>
389+
No users found. Make sure everyone from your team
390+
has logged in for them to appear here.
391+
</CommandEmpty>
389392
)}
390393
{!loading &&
391394
filteredSearchResults.map((user) => (

0 commit comments

Comments
 (0)