Skip to content

Commit

Permalink
fix(ui): unused param in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan-pad committed May 17, 2024
1 parent 94ad18a commit d3411ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/pages/Logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Layer } from "@/clients/layers/types";

const Logs: React.FC = () => {
const { theme } = useContext(ThemeContext);
const { namespace, layerId, runId } = useParams();
const { layerId, runId } = useParams();
const [searchParams, setSerchParams] = useSearchParams();
const navigate = useNavigate();

Expand Down

0 comments on commit d3411ce

Please sign in to comment.