From dfd98dcd4266b26a1ed8e9d5af8ca0312e12dd2a Mon Sep 17 00:00:00 2001 From: Aliaksei Astafyeu Date: Mon, 30 Dec 2024 09:53:41 +0100 Subject: [PATCH] fix(fixed): update example to the latest RN, update android package name to fix expo 52 build issue --- src/core/utils/constants.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/core/utils/constants.ts b/src/core/utils/constants.ts index 4da0cfc..e524918 100644 --- a/src/core/utils/constants.ts +++ b/src/core/utils/constants.ts @@ -1,9 +1,12 @@ export function remapConstants( constants: T ): Record { - return Object.keys(constants).reduce((acc, key) => { - const value = constants[key as keyof T]; - acc[String(value)] = key as keyof T; - return acc; - }, {} as Record); + return Object.keys(constants).reduce( + (acc, key) => { + const value = constants[key as keyof T]; + acc[String(value)] = key as keyof T; + return acc; + }, + {} as Record + ); }