mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: add dependency array
This commit is contained in:
parent
04f5f26712
commit
94a13991fa
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
export const parseLaunchOptions = (params: string | null): string[] => {
|
export const parseLaunchOptions = (params?: string | null): string[] => {
|
||||||
if (!params) {
|
if (!params) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ export function SettingsAccount() {
|
||||||
return () => {
|
return () => {
|
||||||
unsubscribe();
|
unsubscribe();
|
||||||
};
|
};
|
||||||
}, [fetchUserDetails, updateUserDetails]);
|
}, [fetchUserDetails, updateUserDetails, showSuccessToast]);
|
||||||
|
|
||||||
const visibilityOptions = [
|
const visibilityOptions = [
|
||||||
{ value: "PUBLIC", label: t("public") },
|
{ value: "PUBLIC", label: t("public") },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue