Skip to content

Commit

Permalink
Merge branch 'master' of github.com:caneveryoneusetemp/caneveryoneuse…
Browse files Browse the repository at this point in the history
…_tool
  • Loading branch information
Thomas Stauer committed Mar 18, 2024
2 parents c123b8b + c4574cf commit 33a9545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/json/material-angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{
"error_type": "2.1.1 Keyboard",
"description": "Content is not scrollable with the keyboard. Long content gets cut off.",
"fix": "Make content of dialog focusable so it can be scrolled via keyboard. Suggestion: Add ad tabindex='0'",
"fix": "Make content of dialog focusable so it can be scrolled via keyboard. Suggestion: Add tabindex='0'",
"wcag": {
"version": "2.2",
"success_criteria": "https://www.w3.org/TR/WCAG22/#keyboard"
Expand Down
4 changes: 2 additions & 2 deletions src/partials/component.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, {useEffect, useState} from 'react';
import { Link, useParams } from "react-router-dom";
import { useParams } from "react-router-dom";

const Component = (props) => {

const { selectedComponent, type } = props;
const { framework, component } = useParams();
const { framework } = useParams();
const [errorCountTotal, setErrorCountTotal] = useState(0);
const [errors, setErrors] = useState([]);
const [requirements, setRequirements] = useState([]);
Expand Down

0 comments on commit 33a9545

Please sign in to comment.