Fix accidentally importing vanilla code in glitch-soc flavor (#1863)

master
Claire 2022-10-11 19:35:37 +02:00 committed by GitHub
parent b01faa7375
commit 18f210aff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ function main() {
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
const [{ Workbox }, { me }] = await Promise.all([
import('workbox-window'),
import('mastodon/initial_state'),
import('flavours/glitch/initial_state'),
]);
const wb = new Workbox('/sw.js');

View File

@ -4,7 +4,7 @@ import {
HASHTAG_FOLLOW_FAIL,
HASHTAG_UNFOLLOW_REQUEST,
HASHTAG_UNFOLLOW_FAIL,
} from 'mastodon/actions/tags';
} from 'flavours/glitch/actions/tags';
import { Map as ImmutableMap, fromJS } from 'immutable';
const initialState = ImmutableMap();