Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
githubsaturn committed Jul 23, 2024
1 parent 24de1ca commit 27354bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/apps/appDetails/deploy/AppLogsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export default class AppLogsView extends ApiComponent<
const matches = input.match(regexPattern)

if (!matches) {
return null // Not in the form of /pattern/flags
return undefined // Not in the form of /pattern/flags
}

return new RegExp(matches[1], matches[2] || 'i')
Expand Down

0 comments on commit 27354bc

Please sign in to comment.