Skip to content

Commit

Permalink
update Query to QueryPage to prevent overlap with type Query
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck committed Jun 21, 2024
1 parent da34947 commit 40fb741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/app/query/view/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
import { StatsComponent } from "@/app/query/view/[id]/charts";
import { getQuery, Query } from "@/data/query";

export default function Query({ params }: { params: { id: string } }) {
export default function QueryPage({ params }: { params: { id: string } }) {
// display controls
const [logsHidden, setLogsHidden] = useState<boolean>(true);
const [statsHidden, setStatsHidden] = useState<boolean>(true);
Expand Down

0 comments on commit 40fb741

Please sign in to comment.