diff --git a/src/components/modals/main/marketplace/sections/Create.jsx b/src/components/modals/main/marketplace/sections/Create.jsx
index ca22c302..80ec1c19 100644
--- a/src/components/modals/main/marketplace/sections/Create.jsx
+++ b/src/components/modals/main/marketplace/sections/Create.jsx
@@ -494,12 +494,12 @@ export default class Create extends PureComponent {
{this.state.currentTab !== 1 && (
this.changeTab(this.state.currentTab - 1)}
+ onClick={() => this.changeTab(1)}
/>
diff --git a/src/components/modals/main/marketplace/sections/Marketplace.jsx b/src/components/modals/main/marketplace/sections/Marketplace.jsx
index 833e47ed..cf76c821 100644
--- a/src/components/modals/main/marketplace/sections/Marketplace.jsx
+++ b/src/components/modals/main/marketplace/sections/Marketplace.jsx
@@ -1,12 +1,10 @@
import variables from 'modules/variables';
-import TextField from '@mui/material/TextField';
import { PureComponent } from 'react';
import { toast } from 'react-toastify';
import {
MdWifiOff,
MdLocalMall,
MdOutlineKeyboardArrowRight,
- MdRefresh,
MdSearch,
MdOutlineArrowForward,
} from 'react-icons/md';
@@ -365,8 +363,8 @@ export default class Marketplace extends PureComponent {
{this.state.importedSettings.length !== 0 ? (
diff --git a/src/modules/helpers/background/widget.js b/src/modules/helpers/background/widget.js
index f1c5113f..fd6e1b9b 100644
--- a/src/modules/helpers/background/widget.js
+++ b/src/modules/helpers/background/widget.js
@@ -1,5 +1,6 @@
// since there is so much code in the component, we have moved it to a separate file
import offlineImages from './offlineImages.json';
+
export function videoCheck(url) {
return (
url.startsWith('data:video/') ||