Skip to content

Commit e202f82

Browse files
committed
Update prettierignore to exclude JavaScript files and adjust modal margin; fix typo in delete conversation confirmation message
1 parent c3f8833 commit e202f82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.prettierignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dist
1+
dist/**/*.js
22
node_modules
33
coverage
44
alias

src/webchat-ui/components/Modal/Modal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const StyledDialog = styled.dialog`
2424
border: none;
2525
border-radius: 16px;
2626
background-color: ${({ theme }) => theme.white};
27-
margin: 20px auto;
27+
margin: 20px;
2828
z-index: 99999;
2929
3030
&.fade-enter {

src/webchat-ui/components/presentational/chat-options/DeleteConversation.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const DeleteConversation = (props: DeleteConversationProps) => {
9494
>
9595
<Typography variant="body-regular" className="webchat-delete-conversation-text">
9696
{config.settings.customTranslations?.delete_conversation_confirmation ??
97-
"Are you sure you want to delete this conversation? This action cannot be undone"}
97+
"Are you sure you want to delete this conversation? This action cannot be undone."}
9898
</Typography>
9999
</DeleteConfirmModal>
100100
</>

0 commit comments

Comments
 (0)