chore: fix typo for selection button

This commit is contained in:
Leangseu Kim
2022-10-20 10:38:18 -04:00
committed by leangseu-edx
parent 4b38aaa199
commit 0f4e2e28dd
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ export const SelectSessionButton = ({ cardId }) => {
disabled={isMasquerading || !hasAccess || (!canChange || !hasSessions)}
onClick={openSessionModal}
>
{formatMessage(messages.resume)}
{formatMessage(messages.selectSession)}
</Button>
);
};

View File

@@ -5,7 +5,7 @@ exports[`SelectSessionButton snapshot renders default button 1`] = `
disabled={false}
onClick={[MockFunction mockOpenSessionModal]}
>
Resume
Select Session
</Button>
`;
@@ -14,7 +14,7 @@ exports[`SelectSessionButton snapshot renders disabled button if masquerading 1`
disabled={true}
onClick={[MockFunction mockOpenSessionModal]}
>
Resume
Select Session
</Button>
`;
@@ -23,6 +23,6 @@ exports[`SelectSessionButton snapshot renders disabled button when user does not
disabled={true}
onClick={[MockFunction mockOpenSessionModal]}
>
Resume
Select Session
</Button>
`;