diff --git a/src/components/modals/main/marketplace/Item.jsx b/src/components/modals/main/marketplace/Item.jsx index 4dae4a91..955adfab 100644 --- a/src/components/modals/main/marketplace/Item.jsx +++ b/src/components/modals/main/marketplace/Item.jsx @@ -4,7 +4,6 @@ import Tooltip from '../../../helpers/tooltip/Tooltip'; import ImageCarousel from '../../../helpers/carousel/Carousel'; import { toast } from 'react-toastify'; import { - MdArrowBack, MdIosShare, MdFlag, MdWarning, @@ -13,8 +12,6 @@ import { MdFormatQuote, MdImage, MdTranslate, - MdKeyboardArrowDown, - MdKeyboardArrowUp, MdOutlineKeyboardArrowRight, MdExpandMore, } from 'react-icons/md'; diff --git a/src/components/modals/main/marketplace/sections/Marketplace.jsx b/src/components/modals/main/marketplace/sections/Marketplace.jsx index 132e1a52..051c87bf 100644 --- a/src/components/modals/main/marketplace/sections/Marketplace.jsx +++ b/src/components/modals/main/marketplace/sections/Marketplace.jsx @@ -7,7 +7,6 @@ import { MdOutlineKeyboardArrowRight, MdRefresh, MdOutlineArrowForward, - MdOutlineOpenInNew, } from 'react-icons/md'; import Item from '../Item'; diff --git a/src/components/modals/main/tabs/backend/Tab.jsx b/src/components/modals/main/tabs/backend/Tab.jsx index aa07e7fe..60a8409b 100644 --- a/src/components/modals/main/tabs/backend/Tab.jsx +++ b/src/components/modals/main/tabs/backend/Tab.jsx @@ -22,7 +22,6 @@ import { MdOutlineAssessment as Stats, MdOutlineNewReleases as Changelog, MdInfoOutline as About, - MdEvent as Reminder, MdCode as Sideload, MdAddCircleOutline as Added, MdAddCircleOutline as Create, diff --git a/src/components/widgets/quote/Quote.jsx b/src/components/widgets/quote/Quote.jsx index 949d8e22..c39ea1bb 100644 --- a/src/components/widgets/quote/Quote.jsx +++ b/src/components/widgets/quote/Quote.jsx @@ -115,7 +115,7 @@ export default class Quote extends PureComponent { const authorimgdata = await ( await fetch( - `https://en.wikipedia.org/w/api.php?action=query&titles=${author}&origin=*&prop=pageimages&format=json&pithumbsize=100`, + `https://${variables.languagecode.split('_')[0]}.wikipedia.org/w/api.php?action=query&titles=${author}&origin=*&prop=pageimages&format=json&pithumbsize=100`, ) ).json(); @@ -126,7 +126,7 @@ export default class Quote extends PureComponent { const authorimglicensedata = await ( await fetch( - `https://en.wikipedia.org/w/api.php?action=query&prop=imageinfo&iiprop=extmetadata&titles=File:${ + `https://${variables.languagecode.split('_')[0]}.wikipedia.org/w/api.php?action=query&prop=imageinfo&iiprop=extmetadata&titles=File:${ authorimgdata.query.pages[Object.keys(authorimgdata.query.pages)[0]].pageimage }&origin=*&format=json`, )