diff --git a/src/pages/Settings/Dropdown.tsx b/src/pages/Settings/Dropdown.tsx index 0027ced..92c25fe 100644 --- a/src/pages/Settings/Dropdown.tsx +++ b/src/pages/Settings/Dropdown.tsx @@ -1,4 +1,5 @@ import { useState, useEffect } from "preact/hooks"; +import { FaAngleDown } from "react-icons/fa"; interface Option { id: string; @@ -34,8 +35,13 @@ const Dropdown = ({ className="font-roboto flex h-14 w-56 cursor-pointer flex-col items-center justify-center rounded-2xl border border-input-border-color bg-input text-center text-xl" onClick={() => setIsOpen(!isOpen)} > -
- {options.find((o) => o.id === choice)?.label} +
+
+ {options.find((o) => o.id === choice)?.label} +
+
+ +
{isOpen && (
@@ -48,7 +54,7 @@ const Dropdown = ({ setChoice(option.id); localStorage.setItem(storageKey, option.id); if (refresh == true) { - window.location.reload() + window.location.reload(); } }} >