fix: add space in Torbox tab label

This commit is contained in:
Hachi-R 2025-02-16 17:52:28 -03:00
parent d1a77dc5ec
commit cc14562edd

View file

@ -36,20 +36,20 @@ export default function Settings() {
}, },
...(isTorboxEnabled ...(isTorboxEnabled
? [ ? [
{ {
tabLabel: ( tabLabel: (
<> <>
<img <img
src={torBoxLogo} src={torBoxLogo}
alt="TorBox" alt="TorBox"
style={{ width: 13, height: 13 }} style={{ width: 13, height: 13 }}
/> />{" "}
Torbox Torbox
</> </>
), ),
contentTitle: "TorBox", contentTitle: "TorBox",
}, },
] ]
: []), : []),
{ tabLabel: "Real-Debrid", contentTitle: "Real-Debrid" }, { tabLabel: "Real-Debrid", contentTitle: "Real-Debrid" },
]; ];