Update stickers.js

This commit is contained in:
Ella 2022-08-25 18:21:16 -04:00
parent 1ad41b6159
commit a034796579

View file

@ -182,6 +182,6 @@ export const getStaticProps = () => {
const stickersDir = path.join(process.cwd(), 'public', 'stickers')
const stickers = fs
.readdirSync(stickersDir)
.filter(sticker => sticker != 'hero.jpg')
.filter(sticker => sticker !== 'hero.jpg')
return { props: { stickers } }
}