From 1bd98801148b7c88ec70a7a0fef65b8d85dd06d8 Mon Sep 17 00:00:00 2001 From: Nivindu Lakshitha Date: Wed, 7 Aug 2024 22:11:34 +0530 Subject: [PATCH 1/3] Change decimal seperator for well-structured amount view --- components/AnimatedCounter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AnimatedCounter.tsx b/components/AnimatedCounter.tsx index c2e6c7c..936d041 100644 --- a/components/AnimatedCounter.tsx +++ b/components/AnimatedCounter.tsx @@ -7,7 +7,7 @@ const AnimatedCounter = ({ amount }: { amount: number }) => {
From 2ca283f49acaf9edb38158bb892282f81fb58574 Mon Sep 17 00:00:00 2001 From: nivindulakshitha Date: Wed, 4 Sep 2024 21:33:08 +0530 Subject: [PATCH 2/3] chore: Update environment variable name for Appwrite key --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49b1237..e19a9e6 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ APPWRITE_DATABASE_ID= APPWRITE_USER_COLLECTION_ID= APPWRITE_BANK_COLLECTION_ID= APPWRITE_TRANSACTION_COLLECTION_ID= -APPWRITE_SECRET= +NEXT_APPWRITE_KEY= #PLAID PLAID_CLIENT_ID= From c74770c151da86cfa1243c0a6c02fa9f9e2511dd Mon Sep 17 00:00:00 2001 From: nivindulakshitha Date: Sat, 7 Sep 2024 16:20:40 +0530 Subject: [PATCH 3/3] Refactor Progress component to accept custom indicator class name --- components/ui/progress.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/components/ui/progress.tsx b/components/ui/progress.tsx index 412e53c..994c66c 100644 --- a/components/ui/progress.tsx +++ b/components/ui/progress.tsx @@ -5,9 +5,13 @@ import * as ProgressPrimitive from "@radix-ui/react-progress" import { cn } from "@/lib/utils" +type ProgressProps = React.ComponentPropsWithoutRef & { + indicatorClassName?: string; +}; + const Progress = React.forwardRef< React.ElementRef, - React.ComponentPropsWithoutRef + ProgressProps >(({ indicatorClassName, className, value, ...props }, ref) => ( )) + Progress.displayName = ProgressPrimitive.Root.displayName export { Progress }