Skip to content

Commit

Permalink
fix: run prettier and bump node version (#757)
Browse files Browse the repository at this point in the history
* fix: run prettier and bump node version

* feat: bump version

* fix: revert manual changeset changes, should be generated with ci
  • Loading branch information
J0 committed Apr 5, 2024
1 parent 3f9dc4f commit 95730b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
Lint:
strategy:
matrix:
node: ['18']
node: ['20']

runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: ['18']
node: ['20']

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Release / Node ${{ matrix.node }}
strategy:
matrix:
node: ['18']
node: ['20']

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion packages/ssr/src/createBrowserClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function createBrowserClient<

if (options) {
({ cookies, isSingleton = true, cookieOptions, ...userDefinedClientOptions } = options);
cookies = cookies || {};
cookies = cookies || {};
}

const cookieClientOptions = {
Expand Down

0 comments on commit 95730b8

Please sign in to comment.