Skip to content

Commit 13b0f3c

Browse files
chrisbobbegnprice
authored andcommitted
ServerPushSetupBanner: Fix conditional for showing admin-facing message
Somehow I got this conditional backwards when I wrote it in cb301ec.
1 parent 6db5bb9 commit 13b0f3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/ServerPushSetupBanner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ export default function ServerPushSetupBanner(props: Props): Node {
5050
visible = true;
5151
text = isAtLeastAdmin
5252
? {
53-
text: 'The Zulip server at {realm} is not set up to deliver push notifications. Please contact your administrator.',
53+
text: 'The Zulip server at {realm} is not set up to deliver push notifications.',
5454
values: { realm: realm.toString() },
5555
}
5656
: {
57-
text: 'The Zulip server at {realm} is not set up to deliver push notifications.',
57+
text: 'The Zulip server at {realm} is not set up to deliver push notifications. Please contact your administrator.',
5858
values: { realm: realm.toString() },
5959
};
6060
}

0 commit comments

Comments
 (0)