Merge branch 'fix/clear-shared-link-pwd' into refactor/drop-changeExpiryTime

This commit is contained in:
Timon
2026-06-03 23:40:28 +02:00
committed by GitHub
@@ -403,9 +403,7 @@ class SharedLinkEditPage extends HookConsumerWidget {
final newExpiry = expiryAfter.value;
if (newExpiry?.toUtc() != existingLink!.expiresAt?.toUtc()) {
expiry = newExpiry == null
? const Optional.present(null)
: Optional.present(newExpiry.toUtc());
expiry = newExpiry == null ? const Optional.present(null) : Optional.present(newExpiry.toUtc());
}
await ref