Skip to content

Commit

Permalink
chore: remove var
Browse files Browse the repository at this point in the history
  • Loading branch information
altaywtf committed Dec 10, 2023
1 parent 7381454 commit 2e0f932
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/layout/app-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from 'react';
import { AppContent } from './app-content';

// @TODO: replace with real links: SUPA-27
const FOOTER_COMPANY_LINKS = [
const FOOTER_SERVICE_LINKS = [
{
href: 'https://experiment.st',
label: 'Privacy policy',
Expand Down Expand Up @@ -42,14 +42,14 @@ export function AppFooter() {
</Text>

<Flex align="center" gap="1">
{FOOTER_COMPANY_LINKS.map((link) => (
{FOOTER_SERVICE_LINKS.map((link) => (
<React.Fragment key={link.href}>
<Link color="gray" href={link.href} size="2" target="_blank">
{link.label}
</Link>

{link !==
FOOTER_COMPANY_LINKS[FOOTER_COMPANY_LINKS.length - 1] ? (
FOOTER_SERVICE_LINKS[FOOTER_SERVICE_LINKS.length - 1] ? (
<Text size="2">·</Text>
) : null}
</React.Fragment>
Expand Down

0 comments on commit 2e0f932

Please sign in to comment.