Skip to content

Commit

Permalink
fix: eslint check error
Browse files Browse the repository at this point in the history
  • Loading branch information
moonlitgrace committed Dec 9, 2024
1 parent b5c593c commit 96342f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/scripts/generate_schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const output_path = path.resolve(__dirname, '../src/lib/types/schema.d.ts');

const command = `openapi-typescript ${api_url}/api/v1/schema/ -o ${output_path}`;

exec(command, (error, stdout, _) => {
exec(command, (error, stdout) => {
if (error) {
console.log(`error: ${error}`);
return;
Expand Down

0 comments on commit 96342f1

Please sign in to comment.