Skip to content

Commit 3ade4a7

Browse files
committed
Update claim invites text
1 parent 0fddc3c commit 3ade4a7

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

fastlane/metadata/android/en-US/changelogs/44.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
- Implemented V2 Shares of OpenShock api.
33
- Reorganized shares page to accomodate new invite model
44
- Added padding between turnstile challenge and password field
5-
- Made unlinking shockers also work when selecting multiple at once
5+
- Made unlinking shockers also work when selecting multiple at once
6+
- Creating a share code (per shocker shares page) now immediately shows a new share pop up just like invites do
7+
- Removed 'add existing share link' option from share tab as it's redundant with the button in settings and clutters up the ui

lib/screens/shockers/individual/shockers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class ShockerScreen extends StatefulWidget {
228228
Navigator.of(context).pop();
229229
startRedeemShareCode(manager, context, reloadState);
230230
},
231-
child: Text("Claim invite")),
231+
child: Text("Claim invite or share code")),
232232
TextButton(
233233
onPressed: () async {
234234
await startPairShocker(manager, context, reloadState);

lib/screens/user_shares/user_share_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class UserShareScreen extends StatefulWidget {
4747
TextButton(onPressed: () async {
4848
Navigator.of(context).pop();
4949
ShockerScreen.startRedeemShareCode(AlarmListManager.getInstance(), context, reloadState);
50-
}, child: Text("Claim Invite")),
50+
}, child: Text("Claim Invite or share code")),
5151
TextButton(
5252
onPressed: () async {
5353
Navigator.of(context).pop();

0 commit comments

Comments
 (0)