Skip to content

Commit

Permalink
Fix image-resolution in instructions (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppsreejith authored Nov 10, 2024
1 parent 338fa0c commit f6d34e8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
9 changes: 5 additions & 4 deletions web/src/components/common/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,16 @@ import { getBillingInfo } from '../../app/api/billing'
import { setBillingInfo } from '../../state/billing/reducer'
import { SupportButton } from './Support'
import { Markdown } from './Markdown'
import addonsMenu from '../../assets/screenshots/addons-menu.png'
import addonsSearch from '../../assets/screenshots/addons-search.png'
import addonsInstall from '../../assets/screenshots/addons-install.png'
import addonsActivate from '../../assets/screenshots/addons-activate.png'
import { toggleMinusXRoot } from '../../app/rpc'
import { configs } from '../../constants'

const useAppStore = getApp().useStore()

const AppInstructions = () => {
const addonsMenu = `${configs.WEB_URL}/screenshots/addons-menu.png`
const addonsSearch = `${configs.WEB_URL}/screenshots/addons-search.png`
const addonsInstall = `${configs.WEB_URL}/screenshots/addons-install.png`
const addonsActivate = `${configs.WEB_URL}/screenshots/addons-activate.png`
const addOnStatus = useAppStore((state) => state.addOnStatus)
useEffect(() => {
if (addOnStatus == 'activated') {
Expand Down

0 comments on commit f6d34e8

Please sign in to comment.