Skip to content

Commit

Permalink
fix: unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDmz committed Aug 25, 2023
1 parent 350875e commit 84b837a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Review/SurveyUnitLine.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function SurveyUnitLine({
view,
dataRetreiver,
}) {
const { campaignLabel, interviewer, id, viewed, questionnaireId } = lineData;
const { campaignLabel, interviewer, id, viewed } = lineData;
const queenUrl = `${window.localStorage.getItem("QUEEN_URL_FRONT_END")}`;
return (
<tr className={viewed ? "" : "notViewed"}>
Expand Down

0 comments on commit 84b837a

Please sign in to comment.