We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1d230f commit 98a44faCopy full SHA for 98a44fa
invokeai/frontend/web/src/features/gallery/components/Boards/DeleteBoardModal.tsx
@@ -147,12 +147,13 @@ const DeleteBoardModal = () => {
147
bottomMessage={t('boards.bottomMessage')}
148
/>
149
)}
150
- <Text>
151
- {boardToDelete !== 'none' &&
152
- (boardToDelete.is_private
+ {boardToDelete !== 'none' && (
+ <Text>
+ {boardToDelete.is_private
153
? t('boards.deletedPrivateBoardsCannotbeRestored')
154
- : t('boards.deletedBoardsCannotbeRestored'))}
155
- </Text>
+ : t('boards.deletedBoardsCannotbeRestored')}
+ </Text>
156
+ )}
157
<Text>{t('gallery.deleteImagePermanent')}</Text>
158
</Flex>
159
</AlertDialogBody>
0 commit comments