Skip to content

Commit

Permalink
fix: switch from HTML5 fetch to peer-fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
vickywane committed Mar 13, 2021
1 parent cb352d3 commit 1efed5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import Vue from 'vue'
import Vuex from 'vuex'
import PNPStore from './pnp.js'
import { INITIALIZE_PNP } from './action-types.js'
import { UPDATE_AVAILABLE, EDGE_DEVICE_INFO } from './mutation-types'
import { UPDATE_AVAILABLE } from './mutation-types'

Vue.use(Vuex)

const store = new Vuex.Store({
state: {
updateToBeInstalled: undefined,
Expand All @@ -14,7 +14,7 @@ const store = new Vuex.Store({
mutations: {
[UPDATE_AVAILABLE] (state, updateToBeInstalled) {
state.updateToBeInstalled = updateToBeInstalled
},
}
},
actions: {},
modules: {
Expand Down

0 comments on commit 1efed5a

Please sign in to comment.