Bluesky app fork with some witchin' additions 💫

Fix confirm profile sizing for blocks (#564)

authored by

Paul Frazee and committed by
GitHub
af905947 8c675248

+3 -3
+1 -1
src/view/com/modals/Confirm.tsx
··· 13 13 import {usePalette} from 'lib/hooks/usePalette' 14 14 import {isDesktopWeb} from 'platform/detection' 15 15 16 - export const snapPoints = [300] 16 + export const snapPoints = ['50%'] 17 17 18 18 export function Component({ 19 19 title,
+2 -2
src/view/com/profile/ProfileHeader.tsx
··· 180 180 name: 'confirm', 181 181 title: 'Block Account', 182 182 message: 183 - 'Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours.', 183 + 'Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you.', 184 184 onPressConfirm: async () => { 185 185 try { 186 186 await view.blockAccount() ··· 200 200 name: 'confirm', 201 201 title: 'Unblock Account', 202 202 message: 203 - 'The account will be able to interact with you after unblocking. (You can always block again in the future.)', 203 + 'The account will be able to interact with you after unblocking.', 204 204 onPressConfirm: async () => { 205 205 try { 206 206 await view.unblockAccount()