fix(imports): update import paths in ReleaseNoteItem and useModsSearch to utilize ~ for consistency

This commit is contained in:
Shintaro Jokagi 2025-05-12 23:46:55 +12:00
parent bac2fe1846
commit b12045734e
No known key found for this signature in database
GPG key ID: 0DDF8FA44C9A0DA8
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import {
type BreakingChange, type BreakingChange,
getReleaseNoteFirefoxVersion, getReleaseNoteFirefoxVersion,
} from '../release-notes' } from '../release-notes'
import { releaseNotes as releaseNotesData } from '../release-notes' import { releaseNotes as releaseNotesData } from '~/release-notes'
import { getLocale, getUI, getPath } from '~/utils/i18n' import { getLocale, getUI, getPath } from '~/utils/i18n'
export type Props = ReleaseNote export type Props = ReleaseNote
const { isTwilight, ...props } = Astro.props const { isTwilight, ...props } = Astro.props

View file

@ -1,5 +1,5 @@
import { useEffect, useState } from 'preact/hooks' import { useEffect, useState } from 'preact/hooks'
import type { ZenTheme } from '../mods' import type { ZenTheme } from '~/mods'
type SortOrder = 'default' | 'asc' | 'desc' type SortOrder = 'default' | 'asc' | 'desc'