Skip to content

Commit

Permalink
Fix change that turned off feedback; update eslint config (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlwllmr authored Nov 28, 2024
1 parent 71446d0 commit 57f06c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export default [
"react/require-default-props": 0,
"react/jsx-props-no-spreading": 0,
"react/button-has-type": 0,
"react/no-unknown-property": [2, { ignore: ["ub-in-page"] }],
"jsx-a11y/label-has-associated-control": [
"error",
{
Expand Down
4 changes: 2 additions & 2 deletions src/theme/DocItem/Layout/GetFeedback.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ const GetFeedback = (props) => {
<div className="getfeedback-container">
{/*Light*/}
<div
data-ub-in-page="66fd19777582bd0f0b3f8314"
ub-in-page="66fd19777582bd0f0b3f8314"
className={theme === "dark" ? "getfeedback-hidden" : undefined}
ref={feedbackContRef}
/>
{/*Dark*/}
<div
data-ub-in-page="66fd1931467c23680b03167d"
ub-in-page="66fd1931467c23680b03167d"
className={theme === "light" ? "getfeedback-hidden" : undefined}
ref={feedbackContRef}
/>
Expand Down

0 comments on commit 57f06c3

Please sign in to comment.