Skip to content

Commit

Permalink
fixed typing and linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Raining-Cloud committed Mar 15, 2024
1 parent 2373942 commit d201072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comprl-web/app/config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from 'fs';
import { parse } from 'toml';

export function parseArgs() {
const args = {};;
const args: { [key: string]: string } = {}; // Add index signature
process.argv
.slice(2, process.argv.length)
.forEach(arg => {
Expand Down

0 comments on commit d201072

Please sign in to comment.