Update favicon

This commit is contained in:
Calli
2023-06-23 17:48:18 +03:00
parent 5429ff7969
commit bc1a966580
2 changed files with 4 additions and 3 deletions

View File

@@ -13,10 +13,11 @@ export const LoginDialog = ({
open: boolean;
closeDialog: () => void;
}) => {
const DEFAULT_SCOPES_TO_SELECT = ["esi-planets.manage_planets.v1"];
const [scopes] = useState<string[]>(["esi-planets.manage_planets.v1"]);
const [selectedScopes, setSelectedScopes] = useState<string[]>([
"esi-planets.manage_planets.v1",
]);
const [selectedScopes, setSelectedScopes] = useState<string[]>(
DEFAULT_SCOPES_TO_SELECT
);
const [ssoUrl, setSsoUrl] = useState<string | undefined>(undefined);
const [loginUrl, setLoginUrl] = useState<string | undefined>(undefined);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 12 KiB