feat: fixing download error for gofile

This commit is contained in:
Chubby Granny Chaser 2024-09-14 18:10:38 +01:00
parent b122489b34
commit 268ac3d5a4
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,3 @@
import { appContainer } from "@renderer/app.css";
import { SPACING_UNIT } from "../../theme.css";
import { style } from "@vanilla-extract/css";

View file

@ -1,4 +1,4 @@
import { Button, SelectField } from "@renderer/components";
import { SelectField } from "@renderer/components";
import { SPACING_UNIT } from "@renderer/theme.css";
import { Controller, useForm } from "react-hook-form";
import { useTranslation } from "react-i18next";
@ -6,7 +6,7 @@ import { useTranslation } from "react-i18next";
import * as styles from "./settings-privacy.css";
import { useToast, useUserDetails } from "@renderer/hooks";
import { useEffect, useState } from "react";
import { XCircleFillIcon, XIcon } from "@primer/octicons-react";
import { XCircleFillIcon } from "@primer/octicons-react";
interface FormValues {
profileVisibility: "PUBLIC" | "FRIENDS" | "PRIVATE";