Skip to content

Commit

Permalink
refactor: use logo path directly
Browse files Browse the repository at this point in the history
  • Loading branch information
maltoze committed Jul 12, 2023
1 parent bdd1aa5 commit ad655a4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/popup/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { ISettings } from '../common/types'
import cx from 'classnames'
import '../styles/global.css'
import { useHotkeys } from 'react-hotkeys-hook'
import logo from '/logo.png'

async function getCurrentUrl() {
const [tab] = await browser.tabs.query({
Expand Down Expand Up @@ -97,7 +96,7 @@ export default function App() {
<div className="w-64 pb-3.5 text-sm text-zinc-900">
<div className="flex select-none justify-between border-b p-2.5">
<div className="inline-flex gap-2 items-center">
<img src={logo} className="inline-block h-6 w-6" />
<img src="/logo.png" className="inline-block h-6 w-6" />
<span>Link Popper</span>
</div>
<div className="flex items-center">
Expand Down

0 comments on commit ad655a4

Please sign in to comment.