Skip to content

Commit

Permalink
Merge pull request #97 from dbcls/minorfix
Browse files Browse the repository at this point in the history
minorfix
  • Loading branch information
sasaujp committed Jan 26, 2021
2 parents 8dc510e + dd0ceda commit 7cd31cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node/src/ts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as React from 'react'
import * as ReactDOM from 'react-dom'
import { Provider } from 'react-redux'
import { ConnectedRouter } from 'connected-react-router'
import * as firebase from 'firebase/app'
import firebase from 'firebase/app'
import 'firebase/auth'

import configureStore, { history } from './store'
Expand Down
2 changes: 1 addition & 1 deletion node/src/ts/sagas/anonymous.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import moment from 'moment'
import { push } from 'connected-react-router'
import { put, takeEvery, call } from 'redux-saga/effects'
import { reset, startSubmit, stopSubmit } from 'redux-form'
import * as firebase from 'firebase/app'
import firebase from 'firebase/app'

import { FormAttributes, Url } from '../constants'
import { SignUpActionNames } from '../actions/signup'
Expand Down
2 changes: 1 addition & 1 deletion node/src/ts/sagas/user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from 'redux-saga/effects'
import { reset, startSubmit, stopSubmit } from 'redux-form'
import { toast } from 'react-toastify'
import * as firebase from 'firebase/app'
import firebase from 'firebase/app'
import * as localforage from 'localforage'
import { FormattedMessage } from 'react-intl'

Expand Down

0 comments on commit 7cd31cf

Please sign in to comment.