Skip to content

Commit e1bc52b

Browse files
committed
style(reactive-rpc): 💄 fix linter error
1 parent bc5713d commit e1bc52b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/server/routes/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const createCaller = (services: Services) => {
2121
wrapInternalError: (error: unknown) => {
2222
if (error instanceof Value) return error;
2323
if (error instanceof RpcError) return RpcError.value(error);
24+
// tslint:disable-next-line:no-console
2425
console.error(error);
2526
return RpcError.valueFrom(error);
2627
},

0 commit comments

Comments
 (0)