Skip to content

Commit

Permalink
MainMenu should be visible for Reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliohome committed Sep 5, 2023
1 parent 9dadb76 commit 240af29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/reporting/rpt-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useState } from 'react';
import { MainMenu } from "@/features/menu/menu";

export const RptContext = () => {
const [isOpen, setIsOpen] = useState(false);
const [isOpen, setIsOpen] = useState(true);
return (
<MainMenu isOpen={isOpen} setIsOpen={setIsOpen} />
)
Expand Down

0 comments on commit 240af29

Please sign in to comment.