fix: updated theme style store install

This commit is contained in:
SethBurkart123
2024-05-21 19:40:59 +10:00
parent ef5f15d3ea
commit fcfc2d4217
5 changed files with 35 additions and 88 deletions
-6
View File
@@ -1,8 +1,6 @@
import browser from 'webextension-polyfill'
import { onError } from './seqta/utils/onError';
import { SettingsState } from "./types/storage";
import DownloadTheme from "./seqta/ui/themes/downloadTheme";
export const openDB = () => {
return new Promise((resolve, reject) => {
@@ -120,10 +118,6 @@ browser.runtime.onMessage.addListener((request: any, _sender: any, sendResponse:
GetNews(sendResponse, url);
return true;
case 'DownloadTheme':
DownloadTheme(request.body.theme);
break;
default:
console.log('Unknown request type');