Skip to content

Commit 312a8b3

Browse files
committed
Run format
1 parent 4595f10 commit 312a8b3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

generate-routes.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,9 @@ const write = async (data: string, ...path: string[]): Promise<void> => {
168168
}
169169

170170
const routeRootPath = resolve('src', 'lib', 'seam', 'connect', 'routes')
171-
const writeRoute = async (route: Route): Promise<void> =>
172-
{ await write(renderRoute(route), routeRootPath, `${route.namespace}.ts`); }
171+
const writeRoute = async (route: Route): Promise<void> => {
172+
await write(renderRoute(route), routeRootPath, `${route.namespace}.ts`)
173+
}
173174

174175
const routes = [exampleRoute]
175176

0 commit comments

Comments
 (0)