Skip to content

Commit

Permalink
fix: indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kainpets committed Oct 9, 2023
1 parent 76880c1 commit 3ebeb33
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export const parseRoutesInPackage = async (opts: {
filepaths.map(async (p) => {
const { default: routeFn } = await require(path.resolve(p))

if (routeFn._routeSpec.metaData.ignoreEndpoint) {
return;
}
if (routeFn._routeSpec.metaData.ignoreEndpoint) {
return
}

if (routeFn) {
if (!routeFn._setupParams) {
Expand Down

0 comments on commit 3ebeb33

Please sign in to comment.