From 52e6748d1f22d89c2f65836ef0985e81d32f6d56 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 14 Oct 2025 11:51:30 -0500 Subject: [PATCH] Add 'auth-v1' name to auth resource configuration This commit updates the auth resource in amplify/auth/resource.ts by adding a name property, enhancing clarity and versioning for the authentication setup. --- amplify/auth/resource.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/amplify/auth/resource.ts b/amplify/auth/resource.ts index fe359ed8..df0415cf 100644 --- a/amplify/auth/resource.ts +++ b/amplify/auth/resource.ts @@ -10,6 +10,7 @@ import { validateStoreLimits } from '../functions/validateStoreLimits/resource'; * @see https://docs.amplify.aws/gen2/build-a-backend/auth */ export const auth = defineAuth({ + name: 'auth-v1', triggers: { customMessage, postConfirmation,