Skip to content

Commit 5efd7fb

Browse files
committed
chore(react): fix formatting
1 parent 7cdf39c commit 5efd7fb

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

packages/react/package.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@
1313
"types": "./dist/index.d.ts"
1414
}
1515
},
16-
"keywords": [
17-
"graphql",
18-
"authentication",
19-
"react"
20-
],
16+
"keywords": ["graphql", "authentication", "react"],
2117
"author": "Lab Digital <[email protected]>",
2218
"license": "MIT",
2319
"repository": {
@@ -33,10 +29,7 @@
3329
"test:ci": "vitest run --coverage",
3430
"tsc": "tsc --noEmit"
3531
},
36-
"files": [
37-
"dist",
38-
"src"
39-
],
32+
"files": ["dist", "src"],
4033
"dependencies": {
4134
"jose": "5.4.0",
4235
"js-cookie": "3.0.5"

packages/react/src/provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export function AuthProvider({
240240
(acc, key) =>
241241
// biome-ignore lint/performance/noAccumulatingSpread: fixme
242242
skipKeys.includes(key) ? acc : { ...acc, [key]: tokenPayload[key] },
243-
{}
243+
{},
244244
);
245245
};
246246
if (userToken) {

0 commit comments

Comments
 (0)