Skip to content

Commit

Permalink
no applied
Browse files Browse the repository at this point in the history
  • Loading branch information
konstrybakov committed Sep 6, 2024
1 parent 98267d3 commit 077f78f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/components/list/filter-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const FilterPanel = () => {
</SegmentedControl.Item>
<SegmentedControl.Item value="seen">Seen</SegmentedControl.Item>
<SegmentedControl.Item value="hidden">Hidden</SegmentedControl.Item>
<SegmentedControl.Item value="applied">Applied</SegmentedControl.Item>
{/* <SegmentedControl.Item value="applied">Applied</SegmentedControl.Item> */}
<SegmentedControl.Item value="all">All</SegmentedControl.Item>
</SegmentedControl.Root>
)
Expand Down
5 changes: 2 additions & 3 deletions app/components/list/job-card-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
EyeNoneIcon,
EyeOpenIcon,
LightningBoltIcon,
RocketIcon,
} from '@radix-ui/react-icons'
import { Text } from '@radix-ui/themes'
import { ActionButton } from './action-button'
Expand Down Expand Up @@ -51,14 +50,14 @@ export const JobCardActions = ({ job }: { job: SelectJob }) => {
icon={<EyeOpenIcon />}
label="Seen"
/>
<ActionButton
{/* <ActionButton
isActive={applied.isActive}
loading={applied.loading}
clickHandler={() => applied.clickHandler(job.id)}
colorActive="pink"
icon={<RocketIcon />}
label="Applied"
/>
/> */}
</>
)
}

0 comments on commit 077f78f

Please sign in to comment.