Skip to content

Commit

Permalink
final linter stuff hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
leoRysing committed Apr 17, 2024
1 parent 0124903 commit 8921e6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/components/PopularLeaderboard.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { ScrollView, View } from 'react-native';
import { ScrollView } from 'react-native';
import { Leader } from '../types/types';
import PopularUser from './PopularUser';

Expand Down
2 changes: 1 addition & 1 deletion frontend/components/PopularTrendingBoard.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { ScrollView, View } from 'react-native';
import { ScrollView } from 'react-native';
import { Trending } from '../types/types';
import TrendingUser from './TrendingUser';

Expand Down
1 change: 1 addition & 0 deletions frontend/components/TabHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const TabHeader: React.FC<TabParams> = ({activeTab, allTabs, setTab}: TabParams)
dropdownOverlayColor={"rgb(255, 255, 255, 0.4)"}
onSelect={(selectedItem: Item, index: number) => {
setTab(selectedItem.title)
console.log(index)
}}
defaultValue={{title: activeTab}}
renderButton={(selectedItem: Item, isOpened: boolean) => {
Expand Down

0 comments on commit 8921e6d

Please sign in to comment.