Skip to content

Commit 44ed80e

Browse files
committed
fix: color for buttons in UPM are primary on dark themes
and black on light themes
1 parent 6fdf1f9 commit 44ed80e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ts/components/dialog/UserProfileModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,13 @@ export const UserProfileModal = ({
111111
onClick={onClickStartConversation}
112112
dataTestId="new-session-conversation"
113113
disabled={isBlindedAndNotResolved && hasDisabledMsgRequests}
114+
buttonColor={SessionButtonColor.PrimaryDark}
114115
/>
115116

116117
{!isBlindedAndNotResolved && (
117118
<CopyToClipboardButton
118119
copyContent={conversationIdToDisplay}
119-
buttonColor={SessionButtonColor.TextPrimary}
120+
buttonColor={SessionButtonColor.PrimaryDark}
120121
dataTestId="copy-button-account-id"
121122
buttonType={SessionButtonType.Outline}
122123
hotkey={true}

0 commit comments

Comments
 (0)