Skip to content

Commit

Permalink
chore: make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
vvvvvv1vvvvvv committed Dec 20, 2024
1 parent 0dd6e0e commit 9a75736
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/components/Download/Download.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import styles from "./style.module.scss";
import { Platform, Tab } from "./Tab";
import { DownloadCard } from "./DownloadCard";
import { MOBILE_DOWNLOAD_URL } from "./mobile";
import { IsFirefox } from "../../constant";

const PlatformList = [Platform.WebExtension, Platform.Desktop, Platform.Mobile];

Expand Down
1 change: 0 additions & 1 deletion src/components/Download/Tab.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import clsx from "clsx";
import React from "react";
import styles from "./style.module.scss";
import { IsFirefox } from "../../constant";

export enum Platform {
WebExtension = "WebExtension",
Expand Down
8 changes: 6 additions & 2 deletions src/components/Security.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* eslint-disable no-script-url */
/* eslint-disable jsx-a11y/anchor-is-valid */

import { useState } from "react";
import clsx from "clsx";

Expand Down Expand Up @@ -145,7 +148,7 @@ const Security = () => {
<div className="year-select">
{years.map((year) => (
<a
href="javascript:void(0)"
href="javascript:;"
key={year}
onClick={() => handleClickYear(year)}
className={clsx({ active: year === currentYear })}
Expand All @@ -159,6 +162,7 @@ const Security = () => {
<img
src="/assets/images/security/audit-complete.svg"
className="icon-audit-complete"
alt="complete"
/>
Audit Completed
</div>
Expand Down Expand Up @@ -203,7 +207,7 @@ const Security = () => {
</div>
</div>
<div className="audit-company-report">
<a href={item.reportUrl} target="_blank">
<a href={item.reportUrl} target="_blank" rel="noreferrer">
View Report
<img
src="/assets/images/security/external-link.svg"
Expand Down

0 comments on commit 9a75736

Please sign in to comment.