Skip to content

Commit

Permalink
fix: views (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt authored Dec 2, 2024
1 parent ba45131 commit bf036ef
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/frontend/pages/logs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,7 @@ export default function Logs() {

const [type, setType] = useQueryState<string>(
"type",
parseAsStringEnum(["llm", "trace", "thread"]).withDefault(
(router.query.type as NonNullable<"llm" | "trace" | "thread">) || "llm",
),
parseAsStringEnum(["llm", "trace", "thread"]).withDefault("llm"),
);

const [checks, setChecks] = useQueryState(
Expand Down

0 comments on commit bf036ef

Please sign in to comment.