Skip to content

Commit 0995d92

Browse files
docs(website): typos
1 parent 37dc450 commit 0995d92

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

packages/overmind-website/examples/guide/runningsideeffects/lazy.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ export const api = (() => {
2929
{
3030
fileName: 'overmind/effects.js',
3131
code: `
32-
import * as firebase from 'firebase'
33-
34-
3532
export const api = (() => {
3633
let app
3734

packages/overmind-website/guides/beginner/04_runningsideeffects.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ Now you can see how clean your application logic becomes:
3434
h(Example, { name: "guide/runningsideeffects/changestate" })
3535
```
3636

37-
We could also make this effect configurable by defining it as a class instead.
38-
3937
## Initializing effects
4038

4139
It can be a good idea to not allow your side effects to initialize when they are defined. This makes sure that they do not leak into tests or server side rendering. For example if you want to use Firebase. Instead of initializing the Firebase application immediately we rather do it behind an **initialize** method:

0 commit comments

Comments
 (0)