Skip to content

Commit 40496ca

Browse files
authored
Merge branch 'main' into dev
2 parents a8387ef + d7ae266 commit 40496ca

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
runs-on: ubuntu-latest
2121
if: ${{ github.event_name != 'pull_request' }}
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
name: Checkout [main]
2525
with:
2626
fetch-depth: 0
2727
#- name: Derive appropriate SHAs for base and head for `nx affected` commands
2828
# uses: nrwl/nx-set-shas@v3
29-
- uses: actions/setup-node@v3
29+
- uses: actions/setup-node@v4
3030
with:
3131
node-version: '16'
3232
- uses: pnpm/action-setup@v2.4.0
@@ -61,14 +61,14 @@ jobs:
6161
runs-on: ubuntu-latest
6262
if: ${{ github.event_name == 'pull_request' }}
6363
steps:
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v4
6565
with:
6666
ref: ${{ github.event.pull_request.head.ref }}
6767
repository: ${{ github.event.pull_request.head.repo.full_name }}
6868
fetch-depth: 0
6969
#- name: Derive appropriate SHAs for base and head for `nx affected` commands
7070
# uses: nrwl/nx-set-shas@v3
71-
- uses: actions/setup-node@v3
71+
- uses: actions/setup-node@v4
7272
with:
7373
node-version: '16'
7474
- uses: pnpm/action-setup@v2.4.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const App = () => {
6868
}, []);
6969

7070
const particlesLoaded = useCallback(async container => {
71-
await console.log(container);
71+
console.log(container);
7272
}, []);
7373

7474
return (
@@ -98,7 +98,7 @@ const App = () => {
9898
}, []);
9999

100100
const particlesLoaded = useCallback(async (container: Container | undefined) => {
101-
await console.log(container);
101+
console.log(container);
102102
}, []);
103103

104104
return (
@@ -128,7 +128,7 @@ const App = () => {
128128
}, []);
129129

130130
const particlesLoaded = useCallback(async container => {
131-
await console.log(container);
131+
console.log(container);
132132
}, []);
133133

134134
return (
@@ -231,7 +231,7 @@ const App = () => {
231231
}, []);
232232

233233
const particlesLoaded = useCallback(async (container: Container | undefined) => {
234-
await console.log(container);
234+
console.log(container);
235235
}, []);
236236
return (
237237
<Particles

0 commit comments

Comments
 (0)