Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed set hourly rate #46

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions frontend/src/Components/Finance_Team_Page/SetHourlyRate.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ import Navbar from "../../Components/Global/Navbar";

function SetHourlyRate() {
let links = [
{
pageName: "View Timesheet Page",
pageLink: "/view_timesheet",
iconPath: "./Home_Page_Icons/Consultant/view_timesheet.svg",
},
];

const [consultantName, setConsultantName] = useState("");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default function ViewSavedTimesheetsPage() {
<h1 className={styles.header}>Saved Timesheets</h1>
<div className={styles.filterContainer}>
<div className={styles.filter}>
<label className={styles.filterTitle}>Filter Timesheets by Time</label>
<label className={styles.filterTitle}>Sort Timesheets by Time</label>
<select value={selectedTimeFilter} onChange={handleTimeFilterChange} id={styles.select1} className={styles.select}>
<option value="new_to_old">Newest to Oldest</option>
<option value="old_to_new">Oldest to Newest</option>
Expand Down