Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ironng committed Sep 18, 2020
1 parent b2f203b commit 8887a8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/reducers/modal.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { OPEN_MODAL, CLOSE_MODAL, SET_RENDER_CONTENT } from "../actions"

const intialState = {
const initialState = {
isOpen: false,
renderContent: null,
}

const modal = (state = intialState, action) => {
const modal = (state = initialState, action) => {
switch (action.type) {
case OPEN_MODAL:
// console.log("OPEN!")
Expand Down
4 changes: 2 additions & 2 deletions src/reducers/wallet-modal.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { OPEN_WALLET_MODAL, CLOSE_WALLET_MODAL } from "../actions"

const intialState = {
const initialState = {
isOpen: false,
}

const walletModal = (state = intialState, action) => {
const walletModal = (state = initialState, action) => {
switch (action.type) {
case OPEN_WALLET_MODAL:
return {
Expand Down

0 comments on commit 8887a8d

Please sign in to comment.