Skip to content

Commit 1da79e8

Browse files
committed
chore: hackathon image cache bust
1 parent 567890f commit 1da79e8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/shared/src/features/hackathon/components/HackathonHero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const HackathonHero = (): ReactElement => {
2828
</Typography>
2929
</FlexRow>
3030
<img
31-
src={fromCDN('/assets/hackathon-og.png')}
31+
src={fromCDN('/assets/hackathon-og.png?v=2')}
3232
alt="daily.dev Hackathon"
3333
className="w-full max-w-2xl rounded-16"
3434
/>

packages/webapp/pages/hackathon/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const HACKATHON_DESCRIPTION =
2525
'72 hours, the daily.dev Public API, and three open tracks. Build something for developers, from developers.';
2626

2727
// TODO move to cloudinary
28-
const HACKATHON_OG_IMAGE = fromCDN('/assets/hackathon-og.png');
28+
const HACKATHON_OG_IMAGE = fromCDN('/assets/hackathon-og.png?v=2');
2929

3030
const seoTitles = getPageSeoTitles(HACKATHON_TITLE);
3131
const seo: NextSeoProps = {

0 commit comments

Comments
 (0)