Skip to content

Commit 7801103

Browse files
committed
Fix tests
1 parent d5dde6a commit 7801103

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/pages/confirmations/hooks/alerts/transactions/useFirstTimeInteractionAlert.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ describe('useFirstTimeInteractionAlert', () => {
104104
).toEqual([]);
105105
});
106106

107-
it('returns alert if firstTimeInteraction is true', () => {
107+
it('returns alert if isFirstTimeInteraction is true', () => {
108108
const firstTimeConfirmation = {
109109
...CONFIRMATION_MOCK,
110-
firstTimeInteraction: true,
110+
isFirstTimeInteraction: true,
111111
};
112112
const alerts = runHook({
113113
currentConfirmation: firstTimeConfirmation,

0 commit comments

Comments
 (0)