diff --git a/src/components/Modals/Interlace/index.tsx b/src/components/Modals/Interlace/index.tsx
index 0758c535..c91d3ab2 100644
--- a/src/components/Modals/Interlace/index.tsx
+++ b/src/components/Modals/Interlace/index.tsx
@@ -42,9 +42,7 @@ export const InterlaceModal = ({
state: { api },
} = useCoretimeApi();
const { toastError, toastSuccess, toastInfo } = useToast();
- const {
- fetchRegions,
- } = useRegions();
+ const { fetchRegions } = useRegions();
const currentMask = regionMetadata.region.getMask().toBin();
const oneStart = currentMask.indexOf('1');
@@ -134,9 +132,10 @@ export const InterlaceModal = ({
onChange={(_e, v) => setPosition(Number(v))}
valueLabelDisplay='on'
valueLabelFormat={(v) =>
- `${(((v - oneStart + 1) / (COREMASK_BYTES_LEN * 8)) * 100).toFixed(
- 2
- )}%`
+ `${(
+ ((v - oneStart + 1) / (COREMASK_BYTES_LEN * 8)) *
+ 100
+ ).toFixed(2)}%`
}
className={styles.slider}
/>
diff --git a/src/components/Sidebar/index.tsx b/src/components/Sidebar/index.tsx
index 4daf4b7f..f51724e5 100644
--- a/src/components/Sidebar/index.tsx
+++ b/src/components/Sidebar/index.tsx
@@ -25,8 +25,9 @@ const MenuItem = ({ label, route, icon }: MenuItemProps) => {
return (
route && push(route)}
>
{{
diff --git a/src/components/elements/FeatureCard/index.tsx b/src/components/elements/FeatureCard/index.tsx
index 017ab9a4..cba08c9e 100644
--- a/src/components/elements/FeatureCard/index.tsx
+++ b/src/components/elements/FeatureCard/index.tsx
@@ -1,4 +1,11 @@
-import { Button, Card, CardActions, CardContent, Link, Typography } from '@mui/material';
+import {
+ Button,
+ Card,
+ CardActions,
+ CardContent,
+ Link,
+ Typography,
+} from '@mui/material';
import Image, { StaticImageData } from 'next/image';
import React from 'react';
@@ -8,21 +15,21 @@ interface FeatureCardProps {
title: string;
buttonText: string;
image: StaticImageData;
- href: string
+ href: string;
}
const FeatureCard = ({ title, buttonText, image, href }: FeatureCardProps) => {
return (
-
+
-
+
{title}
-
-
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
);
};