Skip to content

Commit 177bf55

Browse files
committed
No need to log this error, we just need to let the user know.
1 parent db30b9b commit 177bf55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/packages/vite-plugin-graphweaver/src/loaders/csv-export-overrides.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export const loadCsvExportOverrides = async (projectRoot: string) => {
1717
// @todo Validate import- we can't import typescript here but we could validate another way
1818

1919
return `export { csvExportOverrides } from '${resolvedCsvExportOverridesPath}';`;
20-
} catch (error: any) {
21-
console.warn('No CSV export overrides found: ', error);
20+
} catch {
21+
console.warn('No CSV export overrides found.');
2222
return `export const csvExportOverrides = {};`;
2323
}
2424
};

0 commit comments

Comments
 (0)