Skip to content

Commit aeb8f27

Browse files
committed
Removing phrase
1 parent 90956fc commit aeb8f27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packet/notifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def packet_signed_notification(packet: Packet, signer: str) -> None:
4848
subscriptions = NotificationSubscription.query.filter_by(freshman_username=packet.freshman_username)
4949
if subscriptions:
5050
notification_body = post_body
51-
notification_body['contents']['en'] = signer + " signed your packet! Congrats or I'm Sorry"
51+
notification_body['contents']['en'] = signer + " signed your packet!"
5252
notification_body['headings']['en'] = 'New Packet Signature!'
5353
notification_body['chrome_web_icon'] = 'https://profiles.csh.rit.edu/image/' + signer
5454
notification_body['url'] = app.config['PROTOCOL'] + app.config['PACKET_INTRO']

packet/static/js/signing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $(document).ready(function () {
2626
method: "POST",
2727
success: function (data) {
2828
dialogs.fire({
29-
title: "Congratulations or I'm sorry",
29+
title: "Packet Signed",
3030
text: "You've signed " + packetData.freshman_name + "'s packet",
3131
type: "success",
3232
})

0 commit comments

Comments
 (0)