Skip to content

Commit fcf52ac

Browse files
authored
fix(landing): prevent url encoding for spaces for footer links (#2376)
1 parent 842200b commit fcf52ac

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/(landing)/components/footer

1 file changed

+1
-1
lines changed

apps/sim/app/(landing)/components/footer/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default function Footer({ fullWidth = false }: FooterProps) {
109109
{FOOTER_BLOCKS.map((block) => (
110110
<Link
111111
key={block}
112-
href={`https://docs.sim.ai/blocks/${block.toLowerCase().replace(' ', '-')}`}
112+
href={`https://docs.sim.ai/blocks/${block.toLowerCase().replaceAll(' ', '-')}`}
113113
target='_blank'
114114
rel='noopener noreferrer'
115115
className='text-[14px] text-muted-foreground transition-colors hover:text-foreground'

0 commit comments

Comments
 (0)