From ec785d94e337f9197b7800f384f1e7cef4b54f0d Mon Sep 17 00:00:00 2001 From: Jeroen Branje Date: Mon, 26 Feb 2024 16:48:12 +0100 Subject: [PATCH] feat(envited.ascs.digital): Save file to S3 and update DB Signed-off-by: Jeroen Branje --- apps/envited.ascs.digital/modules/Profile/Profile.actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/envited.ascs.digital/modules/Profile/Profile.actions.ts b/apps/envited.ascs.digital/modules/Profile/Profile.actions.ts index 6532041d..1ffbd5f7 100644 --- a/apps/envited.ascs.digital/modules/Profile/Profile.actions.ts +++ b/apps/envited.ascs.digital/modules/Profile/Profile.actions.ts @@ -1,6 +1,7 @@ 'use server' import { revalidatePath } from 'next/cache' +import { dissoc, evolve, pipe } from 'ramda' import { z } from 'zod' import { getUploadUrl } from '../../common/aws' @@ -8,7 +9,6 @@ import { log } from '../../common/logger' import { updateProfile } from '../../common/serverActions/profiles' import { badRequestError, formatError, internalServerErrorError } from '../../common/utils' import { ProfileSchema, ValidateProfileForm } from './Profile.schema' -import { dissoc, evolve, pipe } from 'ramda' type ProfileForm = z.infer