Skip to content

Commit

Permalink
chore: change component name
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjs committed Nov 18, 2024
1 parent 07ea3e1 commit 8687b17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/mine/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const searchTasks = (
}
};

const ContentDev = () => {
const Content = () => {
const [filteredTasks, setFilteredTasks] = useState<task[] | undefined>();
const [selectedTab, setSelectedTab] = useState<Tab>(Tab.ALL);
const [title, setTitle] = useState<string>('');
Expand Down Expand Up @@ -99,7 +99,7 @@ const Mine: FC = () => {
{isAuthenticating ? (
<Loader />
) : isLoggedIn ? (
<ContentDev />
<Content />
) : (
<div>
<p>You are not Authorized</p>
Expand Down

0 comments on commit 8687b17

Please sign in to comment.