[skip ci] WelcomeStickerPicker: Clean up settings types

This commit is contained in:
V 2023-06-21 02:05:01 +02:00
parent 3020fcc9bb
commit 626eb3613e
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905

@ -44,7 +44,10 @@ const settings = definePluginSettings({
],
description: "Choose the greet mode"
}
});
}).withPrivateSettings<{
multiGreetChoices?: string[];
unholyMultiGreetEnabled?: boolean;
}>();
const MessageActions = findByPropsLazy("sendGreetMessage");
@ -73,7 +76,7 @@ function greet(channel: Channel, message: Message, stickers: string[]) {
function GreetMenu({ stickers, channel, message }: { stickers: Sticker[], message: Message, channel: Channel; }) {
const s = settings.use(["greetMode", "multiGreetChoices"] as any) as { greetMode: GreetMode, multiGreetChoices: string[]; };
const s = settings.use(["greetMode", "multiGreetChoices"]);
const { greetMode, multiGreetChoices = [] } = s;
return (
@ -112,7 +115,7 @@ function GreetMenu({ stickers, channel, message }: { stickers: Sticker[], messag
))}
</Menu.MenuGroup>
{!(settings.store as any).unholyMultiGreetEnabled ? null : (
{!settings.store.unholyMultiGreetEnabled ? null : (
<>
<Menu.MenuSeparator />