aboutsummaryrefslogtreecommitdiff
path: root/components/icons.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/icons.tsx')
-rw-r--r--components/icons.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/icons.tsx b/components/icons.tsx
index ea73b26..cf60f54 100644
--- a/components/icons.tsx
+++ b/components/icons.tsx
@@ -121,7 +121,7 @@ export function SlideKeyframe(props: {
loopEnd?: boolean;
}) {
return <div className={'keyframe dispinbl posrel' + (props.ghost ? ' ghost' : '')}>
- {props.ghost && <SlideKeyframeOutline type={props.type} loopEnd={props.loopEnd} />}
+ <SlideKeyframeOutline type={props.type} loopEnd={props.loopEnd} />
<SlideKeyframeBackground type={props.type} loopEnd={props.loopEnd} />
</div>;
}