@@ -242,14 +242,14 @@ const OtpLoginOrRegister = defineAsyncComponent(
242
242
<div class =" main-grid-display" >
243
243
<hgroup class =" smaller-gap" >
244
244
<h2 v-if =" showTitle" >{{ title }}</h2 >
245
- <p >{{ description }}</p >
246
245
<p v-if =" !authenticated" >
247
246
{{
248
247
$t(
249
248
"Claim your link now to edit designs, manage destinations, and see analytics."
250
249
)
251
250
}}
252
251
</p >
252
+ <p v-else >{{ description }}</p >
253
253
</hgroup >
254
254
255
255
<div class =" main-grid-display smaller-gap" >
@@ -395,7 +395,6 @@ const OtpLoginOrRegister = defineAsyncComponent(
395
395
"
396
396
:allowBackgroundClickToClose =" false"
397
397
:gate =" [
398
- 'auth',
399
398
'confirmedEmailOrPhone',
400
399
{
401
400
name: 'subscribedRedirect',
@@ -453,7 +452,6 @@ const OtpLoginOrRegister = defineAsyncComponent(
453
452
"
454
453
:allowBackgroundClickToClose =" false"
455
454
:gate =" [
456
- 'auth',
457
455
'confirmedEmailOrPhone',
458
456
{
459
457
name: 'subscribedRedirect',
@@ -476,7 +474,14 @@ const OtpLoginOrRegister = defineAsyncComponent(
476
474
<h3 >{{ $t("Delete Magic Link") }}</h3 >
477
475
<p >{{ $t("Delete this magic link and all its destinations") }}</p >
478
476
</hgroup >
479
- <base-button class =" outline" >{{ $t("Delete forever") }}</base-button >
477
+ <p v-if =" !authenticated" >
478
+ {{
479
+ $t("If you don't claim your link it will be deleted in 3 minutes.")
480
+ }}
481
+ </p >
482
+ <base-button v-else class =" outline" >{{
483
+ $t("Delete forever")
484
+ }}</base-button >
480
485
</card-element >
481
486
</div >
482
487
</div >
0 commit comments