Skip to content

Commit

Permalink
fix(ui): fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Anis SMAIL authored and smailio committed Dec 4, 2024
1 parent fc19796 commit e54429f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/components/App/Studies/StudiesList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function StudiesList(props: StudiesListProps) {
try {
// Remove "/root" from the path
const folder = folderList.slice(1).join("/");
await scanFolder(folder, requestDeepscan);
await scanFolder(folder, requestDeepScan);
setConfirmFolderScan(false);
setRequestDeepScan(false);
} catch (e) {
Expand All @@ -172,7 +172,7 @@ function StudiesList(props: StudiesListProps) {
};

const handleDeepScanCheckboxChange = () => {
setRequestDeepScan(!requestDeepscan);
setRequestDeepScan(!requestDeepScan);
};

////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -296,7 +296,7 @@ function StudiesList(props: StudiesListProps) {
>
{`${t("studies.scanFolder")} ${folder}?`}
<FormControlLabel
control={<Checkbox checked={requestDeepscan} />}
control={<Checkbox checked={requestDeepScan} />}
label={t("studies.requestDeepScan")}
onChange={handleDeepScanCheckboxChange}
/>{" "}
Expand Down

0 comments on commit e54429f

Please sign in to comment.