Update dependencies, add more logging to crons

This commit is contained in:
Bruno Bernardino
2024-04-17 14:01:06 +01:00
parent bcf54f148e
commit 7fd29ba7bf
9 changed files with 20 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
import { Handlers, PageProps } from 'fresh/server.ts';
import { Dashboard, FreshContextState } from '/lib/types.ts';
import { FreshContextState } from '/lib/types.ts';
import { PASSWORD_SALT } from '/lib/auth.ts';
import {
createVerificationCode,
@@ -180,7 +180,7 @@ export const handler: Handlers<Data, FreshContextState> = {
},
};
export default function Dashboard({ data }: PageProps<Data, FreshContextState>) {
export default function SettingsPage({ data }: PageProps<Data, FreshContextState>) {
return (
<main>
<Settings formData={data?.formData} error={data?.error} notice={data?.notice} />