Skip to content

Commit

Permalink
TOP-202
Browse files Browse the repository at this point in the history
  • Loading branch information
apricot13 committed Sep 17, 2024
1 parent d0334f3 commit 02bd395
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ const App = ({ children, location, navigate }) => {
array: true,
})
const [schedule, setSchedule] = useQuery("schedule", false)
const [startDate, setStartDate] = useQuery("startDate", false)
const [endDate, setEndDate] = useQuery("endDate", false)
const [startDate, setStartDate] = useQuery("start_date", false)
const [endDate, setEndDate] = useQuery("end_date", false)
const [days, setDays] = useQuery("days", [], { array: true })
const [startTime, setStartTime] = useQuery("start_time", [], { array: true })
const [endTime, setEndTime] = useQuery("end_time", [], { array: true })
Expand Down
6 changes: 1 addition & 5 deletions src/components/Filter/ScheduleFilter.jsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
import React, { useEffect, useState } from "react"
import React, { useState } from "react"
import styled from "styled-components"
import {
Outer,
Legend,
Header,
UnfoldButton,
Content,
Label,
InputCheckbox,
Field,
RadioLabel,
RadioField,
InputRadio,
} from "./layout"
import { set } from "react-ga"

const ColumnContent = styled(Content)`
display: grid;
Expand Down
4 changes: 4 additions & 0 deletions src/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ export const fetchServiceDataFromApi = async (
needs,
accessibilities,
suitabilities,
start_date,
end_date,
days,
start_time,
end_time,
Expand All @@ -125,6 +127,8 @@ export const fetchServiceDataFromApi = async (
needs,
accessibilities,
suitabilities,
start_date,
end_date,
days,
start_time,
end_time,
Expand Down

0 comments on commit 02bd395

Please sign in to comment.