Skip to content

Commit

Permalink
fix missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos committed Oct 10, 2024
1 parent 12359b3 commit 5ffd73e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Skus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const Skus = () => {
const [features, setFeatures] = useState({ business: [], enterprise: [] });

const navigate = useNavigate();
const isOn = false;

const handleClick = (id) => {
// navigate to the video with the given id
Expand Down Expand Up @@ -47,7 +48,7 @@ const Skus = () => {
<button
className={`toggle-button ${isOn ? 'on' : 'off'}`}
onClick={() => this.handleGHESToggle()}>
Only show GHES supported
Only show GHES supported
</button>

<div id="main-container">
Expand Down

0 comments on commit 5ffd73e

Please sign in to comment.