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
? [
{
tabLabel: (
<>
<img
src={torBoxLogo}
alt="TorBox"
style={{ width: 13, height: 13 }}
/>
Torbox
</>
),
contentTitle: "TorBox",
},
]
{
tabLabel: (
<>
<img
src={torBoxLogo}
alt="TorBox"
style={{ width: 13, height: 13 }}
/>{" "}
Torbox
</>
),
contentTitle: "TorBox",
},
]
: []),
{ tabLabel: "Real-Debrid", contentTitle: "Real-Debrid" },
];