Skip to content

Commit 3740164

Browse files
committed
chore: fixed type mismatch
1 parent 7f1d920 commit 3740164

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

frontend/src/app/routes/profile/settings.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,6 @@ export const UserProfileSettingsPage = () => {
395395
}
396396
variant={ButtonVariant.PRIMARY}
397397
prefixIcon={DeleteIcon}
398-
uppercase={false}
399398
className="!w-fit"
400399
textClassName="p-0.5 md:px-1 md:py-2 text-body-4"
401400
onClick={openDialog}
@@ -418,7 +417,6 @@ export const UserProfileSettingsPage = () => {
418417
<ButtonWithIcon
419418
label={"Copy Access Token"}
420419
variant={ButtonVariant.PRIMARY}
421-
uppercase={false}
422420
prefixIcon={ClipboardIcon}
423421
className="!w-fit"
424422
textClassName="p-0.5 md:px-1 md:py-2 text-body-4"

frontend/src/features/start-mapping/components/dialogs/offline-prediction-request-dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Dialog } from "@/components/ui/dialog";
22

33
import { FormLabel, Input } from "@/components/ui/form";
44
import { RadioGroup } from "@/components/ui/form/radio-group/radio-group";
5-
import { useState } from "react";
5+
import { useState } from "react";
66
import { ModelSettings } from "@/features/start-mapping/components/model-settings";
77
import { Feature, TModelDetails, TQueryParams } from "@/types";
88
import { Button } from "@/components/ui/button";

0 commit comments

Comments
 (0)