Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-24 23:05:26 +00:00
parent 74f7a69991
commit d8c7338c76
3 changed files with 5 additions and 3 deletions

View file

@ -16,8 +16,9 @@ function firstName(fullName: string | null | undefined): string {
return parts[0] || "Mika";
}
// deno-lint-ignore no-explicit-any
async function getDecryptedSecret(
admin: ReturnType<typeof createClient>,
admin: any,
secretId: string,
): Promise<string | null> {
const { data, error } = await admin