File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323) # set to https://us-central1-hackncsu-today.cloudfunctions.net/oauth_callback for prod deploys
2424FRONTEND_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
3131SPREADSHEET_URL = StringParam (
3232 "REGISTRATION_SPREADSHEET_URL" ,
Original file line number Diff line number Diff line change @@ -49,25 +49,25 @@ export interface TeamFormSubmitPayload {
4949 mentoringHelp : string ;
5050 challenges : string [ ] ;
5151 memberIds : string [ ] ;
52- } ;
52+ }
5353
5454interface TrackOption {
5555 name : string ;
5656 description ?: string ;
57- } ;
57+ }
5858
5959interface ChallengeOption {
6060 name : string ;
6161 description ?: string ;
62- } ;
62+ }
6363
6464interface TeamFormInitialValues {
6565 name : string ;
6666 track : string ;
6767 mentoringHelp : string ;
6868 challenges : string [ ] ;
6969 members : PartialParticipant [ ] ;
70- } ;
70+ }
7171
7272interface 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 ) => (
You can’t perform that action at this time.
0 commit comments