Skip to content

Commit

Permalink
change addon to add-on
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Nov 29, 2023
1 parent f6db7cc commit 9607b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/add-ons/[slug]/+page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const load: PageLoad = async function({ fetch, params }) {
const screenRes = await fetch(`https://api.faithfulpack.net/v2/addons/${params.slug}/files/screenshots`)
.catch((err) => { console.error('screenshots', err); throw err;})
const screenData = await screenRes.json()

const desc_md = parseMd(addonData.description)
//@ts-ignore
let short: string | undefined = addonData.short_description
Expand All @@ -37,7 +37,7 @@ export const load: PageLoad = async function({ fetch, params }) {

return {
id: addonData.id,
title: `Addon: ${addonData.name}`,
title: `Add-on: ${addonData.name}`,
name: addonData.name,
slug: addonData.slug,
image: header,
Expand Down

0 comments on commit 9607b0e

Please sign in to comment.