diff --git a/extension/src/popup/views/GrantAccess/index.tsx b/extension/src/popup/views/GrantAccess/index.tsx
index 3aefca7129..63cbc3101c 100644
--- a/extension/src/popup/views/GrantAccess/index.tsx
+++ b/extension/src/popup/views/GrantAccess/index.tsx
@@ -53,7 +53,7 @@ export const GrantAccess = () => {
)}
>
-
Signing with
+
Connecting with
diff --git a/extension/src/popup/views/ReviewAuth/index.tsx b/extension/src/popup/views/ReviewAuth/index.tsx
index f75e777b8d..b6d9192a9a 100644
--- a/extension/src/popup/views/ReviewAuth/index.tsx
+++ b/extension/src/popup/views/ReviewAuth/index.tsx
@@ -74,6 +74,8 @@ export const ReviewAuth = () => {
params.accountToSign,
);
+ const isLastEntry = activeAuthEntryIndex + 1 === op.auth?.length;
+
return isPasswordRequired ? (
{
size="md"
isLoading={isConfirming}
onClick={() =>
- activeAuthEntryIndex + 1 === op.auth?.length
+ isLastEntry
? setHasConfirmedAuth(true)
: setActiveAuthEntryIndex(activeAuthEntryIndex + 1)
}
>
- {t("Approve and review next")}
+ {isLastEntry
+ ? t("Approve and continue")
+ : t("Approve and review next")}
)}