aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/LineIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/app/components/LineIcon.tsx')
-rw-r--r--src/frontend/app/components/LineIcon.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/app/components/LineIcon.tsx b/src/frontend/app/components/LineIcon.tsx
index 55e38c2..ef05987 100644
--- a/src/frontend/app/components/LineIcon.tsx
+++ b/src/frontend/app/components/LineIcon.tsx
@@ -20,7 +20,7 @@ const LineIcon: React.FC<LineIconProps> = ({ line, region = "vigo", rounded = fa
className={rounded ? 'line-icon-rounded' : 'line-icon'}
style={{ '--line-colour': `var(${cssVarName})`, '--line-text-colour': `var(${cssTextVarName}, unset)` } as React.CSSProperties}
>
- {formattedLine}
+ {line}
</span>
);
};