fix: review notes

This commit is contained in:
bo0tzz
2026-04-20 14:31:04 +02:00
parent e583e3c55a
commit fd52481582
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export class SessionService extends BaseService {
const expiredLinkTokens = await this.oauthLinkTokenRepository.cleanup();
if (expiredLinkTokens > 0) {
this.logger.log(`Deleted ${expiredLinkTokens} expired OAuth link tokens`);
this.logger.debug(`Deleted ${expiredLinkTokens} expired OAuth link tokens`);
}
return JobStatus.Success;
+3 -3
View File
@@ -11,11 +11,11 @@
import { t } from 'svelte-i18n';
import type { PageData } from './$types';
interface Props {
type Props = {
data: PageData;
}
};
let { data }: Props = $props();
const { data }: Props = $props();
let email = $state(data.email || authManager.user?.email || '');
let password = $state('');