Skip to content

Commit

Permalink
fix: fixed dvt89
Browse files Browse the repository at this point in the history
  • Loading branch information
uBaranT authored and Muhammed-baban committed Jan 19, 2024
1 parent a84b6cb commit 1bbeaed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/components/DvtNavbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import React, { useEffect, useState } from 'react';
import { useDispatch } from 'react-redux';
import { useAppSelector } from 'src/hooks/useAppSelector';
import { dvtAppSetSort } from 'src/dvt-redux/dvt-appReducer';
// import { dvtAppSetSort } from 'src/dvt-redux/dvt-appReducer';
import { BellOutlined } from '@ant-design/icons';
import { dvtNavbarSqlSetTabs } from 'src/dvt-redux/dvt-navbarReducer';
import {
Expand Down Expand Up @@ -53,7 +53,7 @@ export interface DvtNavbarProps {

const DvtNavbar: React.FC<DvtNavbarProps> = ({ pathName, user }) => {
const dispatch = useDispatch();
const sort = useAppSelector(state => state.dvtApp.sort);
// const sort = useAppSelector(state => state.dvtApp.sort);
const sqlSelector = useAppSelector(state => state.dvtNavbar.sql);
const [active, setActive] = useState<string>('All');
const [activeData, setActiveData] = useState<TabsDataProps[]>([]);
Expand Down

0 comments on commit 1bbeaed

Please sign in to comment.