Skip to content

Commit

Permalink
Fix something I forgot in #1250
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Sep 23, 2024
1 parent 94d0b3e commit 6bd00a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Feeds/FeedView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { Typography } from "antd";
import React, { useCallback, useEffect, useRef } from "react";
import { useLocation, useNavigate, useParams } from "react-router";
import { elipses } from "../../api/common";
import type { AppDispatch } from "../../store/configureStore";
import type { IDrawerState } from "../../store/drawer/drawerSlice";
import { resetDrawerState } from "../../store/drawer/drawerSlice";
import { clearSelectedFile } from "../../store/explorer/explorerSlice";
Expand All @@ -19,7 +18,7 @@ import {
resetFeed,
setShowToolbar,
} from "../../store/feed/feedSlice";
import { useAppSelector } from "../../store/hooks";
import { useAppDispatch, useAppSelector } from "../../store/hooks";
import {
fetchPluginInstances,
getSelectedPlugin,
Expand Down

0 comments on commit 6bd00a7

Please sign in to comment.