Skip to content

Commit

Permalink
fix: move return statement inside compiler check
Browse files Browse the repository at this point in the history
  • Loading branch information
BobbieGoede committed Dec 21, 2024
1 parent db45616 commit 2cedc20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/unplugin-vue-i18n/src/core/directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ export function directivePlugin({
vuePluginOptions,
translationIdentifiers
)
return {
code,
map: { version: 3, mappings: '', sources: [] } as any
}
}
}
return {
code,
map: { version: 3, mappings: '', sources: [] } as any
}
}
}
}
Expand Down

0 comments on commit 2cedc20

Please sign in to comment.