Skip to content

Commit

Permalink
fix internal technical issues (#1828)
Browse files Browse the repository at this point in the history
  • Loading branch information
aelmanaa authored Mar 21, 2024
1 parent 47505d0 commit b725d39
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Header/Nav/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const NavBar = ({ path, searchTrigger, onHideChange, productsNav, subProd
{searchTrigger && <div className={styles.searchTrigger}>{searchTrigger}</div>}
<div id="weglot" />
<a
rel="noreferrer"
rel="noreferrer noopener"
target="_blank"
className={clsx(styles.button)}
href="https://github.com/smartcontractkit/documentation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ export const ProductNavigation = ({ path, setNavMenuOpen, productsNav, subProduc

return (
<>
<a rel="noreferrer" target="_blank" className={clsx("home-logo", styles.logo)} href="https://chain.link/">
<a
rel="noreferrer noopener"
target="_blank"
className={clsx("home-logo", styles.logo)}
href="https://chain.link/"
>
<img
alt="Chainlink Home"
title="Chainlink Home"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ import { ResourcesIcon } from "./ResourcesIcon"
import { Search } from "../../../aiSearch/Search"

const ResourcesButton = () => (
<a rel="noreferrer" target="_blank" className="nav-cta" href="https://github.com/smartcontractkit/documentation">
<a
rel="noreferrer noopener"
target="_blank"
className="nav-cta"
href="https://github.com/smartcontractkit/documentation"
>
<ResourcesIcon />
<span
style={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ export function ProductNavigation({ productsNav }: Props) {

return (
<Root open={open} onOpenChange={handleOpenChange}>
<a rel="noreferrer" target="_blank" className={clsx("home-logo", styles.logo)} href="https://chain.link/">
<a
rel="noreferrer noopener"
target="_blank"
className={clsx("home-logo", styles.logo)}
href="https://chain.link/"
>
<img
alt="Chainlink Home"
title="Chainlink Home"
Expand Down
2 changes: 1 addition & 1 deletion src/features/common/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Tooltip as ChainlinkToolTip } from "@chainlink/components"
import { Tooltip as ChainlinkToolTip } from "@chainlink/components/src/Tooltip/Tooltip"

export const Tooltip = ({
label,
Expand Down

0 comments on commit b725d39

Please sign in to comment.