diff --git a/packages/builder/src/components/common/AppLockModal.svelte b/packages/builder/src/components/common/AppLockModal.svelte index f1299a62d5..9794e350d9 100644 --- a/packages/builder/src/components/common/AppLockModal.svelte +++ b/packages/builder/src/components/common/AppLockModal.svelte @@ -74,65 +74,67 @@ {/if} -
- - - - - Apps are locked to prevent work from being lost from overlapping - changes between your team. - - {#if lockedByYou && getExpiryDuration(app) > 0} - - {processStringSync( - "This lock will expire in {{ duration time 'millisecond' }} from now. This lock will expire in This lock will expire in ", - { - time: getExpiryDuration(app), - } - )} - - {/if} -
- - - {#if lockedByYou} +{#key app} +
+ + + + + Apps are locked to prevent work from being lost from overlapping + changes between your team. + + {#if lockedByYou && getExpiryDuration(app) > 0} + + {processStringSync( + "This lock will expire in {{ duration time 'millisecond' }} from now. This lock will expire in This lock will expire in ", + { + time: getExpiryDuration(app), + } + )} + + {/if} +
+ - {/if} - -
-
-
-
-
+ {#if lockedByYou} + + {/if} +
+
+
+
+
+
+{/key}