File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
POSTGRES_PRISMA_URL = postgresql://postgres:1234@localhost
2
- POSTGRES_URL_NON_POOLING = postgresql://postgres:1234@localhost
2
+ POSTGRES_URL_NON_POOLING = postgresql://postgres:1234@localhost
3
+
4
+ NEXT_PUBLIC_DEFAULT_CURRENCY_SYMBOL = " "
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export function GroupForm({
67
67
: {
68
68
name : '' ,
69
69
information : '' ,
70
- currency : '' ,
70
+ currency : process . env . NEXT_PUBLIC_DEFAULT_CURRENCY_SYMBOL || '' ,
71
71
participants : [
72
72
{ name : t ( 'Participants.John' ) } ,
73
73
{ name : t ( 'Participants.Jane' ) } ,
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ const envSchema = z
21
21
interpretEnvVarAsBool ,
22
22
z . boolean ( ) . default ( false ) ,
23
23
) ,
24
+ NEXT_PUBLIC_DEFAULT_CURRENCY_SYMBOL : z . string ( ) . optional ( ) ,
24
25
S3_UPLOAD_KEY : z . string ( ) . optional ( ) ,
25
26
S3_UPLOAD_SECRET : z . string ( ) . optional ( ) ,
26
27
S3_UPLOAD_BUCKET : z . string ( ) . optional ( ) ,
You can’t perform that action at this time.
0 commit comments