Skip to content

Commit 09e2885

Browse files
committed
make linter happy
1 parent d6417fc commit 09e2885

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const processArray = (arr: Array<unknown>): unknown[] =>
2222
Array.isArray(el)
2323
? processArray(el)
2424
: isObject(el)
25-
? camelizeResponse(el as Record<string, unknown>)
26-
: el
25+
? camelizeResponse(el as Record<string, unknown>)
26+
: el
2727
);
2828

2929
/**

0 commit comments

Comments
 (0)