Skip to content

Commit 0a015f1

Browse files
committed
[IMP] outlook/gmail: update warning message
Task-5379550
1 parent 026e3cd commit 0a015f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gmail/src/views/login.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function onNextLogin(event) {
2929

3030
if (version !== 1) {
3131
return notify(
32-
"This addin version required Odoo 19.1 or an older version, please install a newer addin version.",
32+
"Oops, this addin is no longer compatible with your version of Odoo. Please install a newer version.",
3333
);
3434
}
3535

outlook/src/taskpane/components/Login/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ class Login extends React.Component<{}, LoginState> {
298298
[AuthenticationRequestError.AuthenticationCodeExpired]:
299299
'Your authentication code is invalid or has expired. ',
300300
[AuthenticationRequestError.InvalidOdooVersion]:
301-
'This addin version required Odoo 19.1 or an older version, please install a newer addin version.',
301+
'Oops, this addin is no longer compatible with your version of Odoo. Please install a newer version. ',
302302
};
303303

304304
const errorStr = ERROR_MESSAGES[this.state.authenticationRequestError];

0 commit comments

Comments
 (0)