Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update forms to use now-u domain #356

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions lib/assets/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ final TERMS_AND_CONDITIONS_URI = Uri.parse(
);

final ABOUT_US_URI = Uri.parse('https://www.now-u.com/about');
final FEEDBACK_FORM_URI = Uri.parse('https://forms.gle/xenzFkRVrELsqnnB9');
final JOIN_RESEARCH_FORM_URI = Uri.parse('https://forms.gle/DjSdjH1DfNtRwXiP7');
final FEEDBACK_FORM_URI = Uri.parse('https://www.now-u.com/app/feedback');
final JOIN_RESEARCH_FORM_URI = Uri.parse(
'https://www.now-u.com/app/research/signup',
Copy link
Collaborator

Choose a reason for hiding this comment

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

Maybe either we can stick to trailing comma like here, or remove it, like value above? i think I'm voting for the second one

Copy link
Member Author

Choose a reason for hiding this comment

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

Yeah that was the original plan but then the linter shouted at me and tried to do the thing where it puts the assignment on the line after: 5ab93ff
I was thinking of making the above match the latter but I think if we can fit on one line it probably makes sense? Maybe I should have just accepts darts insistence on having assignments on the line after

);

final INSTAGRAM_URI = Uri.parse('https://www.instagram.com/now_u_app/');
final FACEBOOK_URI = Uri.parse('https://www.facebook.com/nowufb');
Expand Down
Loading