Skip to content

Commit 4507fa7

Browse files
committed
chore: adds in missing test tags to clearAll modal
1 parent 2a51b76 commit 4507fa7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ts/components/dialog/DeleteAccountModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const DescriptionBeforeAskingConfirmation = (props: {
4141

4242
return (
4343
<>
44-
<span className="session-confirm-main-message">
44+
<span className="session-confirm-main-message" data-testid="modal-description">
4545
<Localizer token="clearDataAllDescription" />
4646
</span>
4747

@@ -62,7 +62,7 @@ const DescriptionBeforeAskingConfirmation = (props: {
6262

6363
const DescriptionWhenAskingConfirmation = (props: { deleteMode: DeleteModes }) => {
6464
return (
65-
<span className="session-confirm-main-message">
65+
<span className="session-confirm-main-message" data-testid="modal-description">
6666
{props.deleteMode === 'device_and_network'
6767
? window.i18n('clearDeviceAndNetworkConfirm')
6868
: window.i18n('clearDeviceDescription')}

0 commit comments

Comments
 (0)