diff options
author | brian-tagg <brian@tagg.id> | 2021-05-07 15:51:35 -0700 |
---|---|---|
committer | brian-tagg <brian@tagg.id> | 2021-05-07 15:51:35 -0700 |
commit | 2510736eef1a66ff3c5b220ac42ca6cc0bce366d (patch) | |
tree | 6e259716afcee811e9a700c4485e260b7f86f1c6 /src/components/notifications | |
parent | 9a890f1d9795f4ff071d50ea5863b80811f840ec (diff) |
Made TaggPrompt changes cleaner, added logoLink to NotificationPrompts type, made image in chat notification a link to the Chat screen
Diffstat (limited to 'src/components/notifications')
-rw-r--r-- | src/components/notifications/NotificationPrompts.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/notifications/NotificationPrompts.tsx b/src/components/notifications/NotificationPrompts.tsx index 0fb580e6..6c6da11e 100644 --- a/src/components/notifications/NotificationPrompts.tsx +++ b/src/components/notifications/NotificationPrompts.tsx @@ -10,6 +10,7 @@ export const InviteFriendsPrompt: React.FC = () => { 'A new feature that lets you invite your friends to Tagg. \nClick on your friends list to do so!' } logoType={'invite_friends'} + logoLink={null} hideCloseButton={true} noPadding={true} onClose={() => {}} @@ -25,6 +26,7 @@ export const PrivateAccountsPrompt: React.FC = () => { 'You can now choose to make your account private!\nHead over to the privacy tab in settings to check it out' } logoType={'private_accounts'} + logoLink={null} hideCloseButton={true} noPadding={true} onClose={() => {}} @@ -40,6 +42,7 @@ export const NewChatPrompt: React.FC = () => { messageHeader={'Chat!'} messageBody={message} logoType={'chat'} + logoLink={"ChatList"} hideCloseButton={true} noPadding={true} onClose={() => {}} @@ -70,6 +73,7 @@ export const SPPromptNotification: React.FC<SPPromptNotificationProps> = ({ </> } logoType={'tagg'} + logoLink={null} hideCloseButton={true} noPadding={true} onClose={() => {}} |