Skip to content

Commit

Permalink
🚨 Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KONFeature committed Sep 13, 2024
1 parent eb7092a commit 69887bd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"noExcessiveCognitiveComplexity": {
"level": "error",
"options": {
"maxAllowedComplexity": 16
"maxAllowedComplexity": 17
}
},
"noUselessTernary": "error",
Expand Down
2 changes: 1 addition & 1 deletion iac/DashboardWebApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function DashboardWebApp({ stack }: StackContext) {
// Enable image optimization
imageOptimization: {
memorySize: 512,
staticImageOptimization: true
staticImageOptimization: true,
},
// Bind to the configs
bind: [...configs, reloadCampaignQueue, readPubKeyFunction],
Expand Down
4 changes: 2 additions & 2 deletions iac/ExampleWebApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function ExampleAppStack({ stack }: StackContext) {
// Enable image optimization
imageOptimization: {
memorySize: 512,
staticImageOptimization: true
staticImageOptimization: true,
},
});

Expand All @@ -52,7 +52,7 @@ export function ExampleAppStack({ stack }: StackContext) {
// Enable image optimization
imageOptimization: {
memorySize: 512,
staticImageOptimization: true
staticImageOptimization: true,
},
});

Expand Down
2 changes: 1 addition & 1 deletion iac/WalletWebApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function WalletAppStack({ stack }: StackContext) {
// Enable image optimization
imageOptimization: {
memorySize: 512,
staticImageOptimization: true
staticImageOptimization: true,
},
// Bind to the configs
bind: [...configs, interactionQueue],
Expand Down
1 change: 0 additions & 1 deletion packages/backend-v2
Submodule backend-v2 deleted from c7b00a

0 comments on commit 69887bd

Please sign in to comment.