Skip to content

Commit

Permalink
Trim whitespace from sources in environment (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
frewmack authored May 27, 2024
1 parent a6eafb4 commit 3a83926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react/src/constants/sources.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const SOURCES = (process.env.REACT_APP_SOURCE_LIST || '').split(',');
const SOURCES = (process.env.REACT_APP_SOURCE_LIST || '').split(',').map(v => v.trim());

export default SOURCES;

0 comments on commit 3a83926

Please sign in to comment.