chore: fix lint

This commit is contained in:
2024-09-04 12:50:06 -05:00
parent 5d9980cac3
commit 7acc91f4ee
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react'; import type { Meta, StoryObj } from '@storybook/react';
import SwitchButton from 'src/views/components/common/SwitchButton'; import SwitchButton from '@views/components/common/SwitchButton';
const meta = { const meta = {
title: 'Components/Common/SwitchButton', title: 'Components/Common/SwitchButton',

View File

@@ -1,5 +1,5 @@
import React, { useState, useEffect } from 'react';
import { Switch } from '@headlessui/react'; import { Switch } from '@headlessui/react';
import React, { useEffect,useState } from 'react';
type ToggleSwitchProps = { type ToggleSwitchProps = {
isChecked?: boolean; isChecked?: boolean;