Skip to content

Commit

Permalink
chore: fix a linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Sep 26, 2024
1 parent c90a54c commit bbeb776
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/lib/components/modals/TransformModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,7 @@
let showOriginal = transformModalStateShared.showOriginal !== false
let queryOptions = state.queryOptions ?? {}
let query =
queryLanguageId === state.queryLanguageId && state.query
? state.query
: ''
let query = queryLanguageId === state.queryLanguageId && state.query ? state.query : ''
let isManual = state.isManual ?? false
let queryError: string | undefined = undefined
Expand Down

0 comments on commit bbeb776

Please sign in to comment.