diff --git a/addons/a11y/src/components/VisionSimulator.tsx b/addons/a11y/src/components/VisionSimulator.tsx
index edae35e978e..050c9392eca 100644
--- a/addons/a11y/src/components/VisionSimulator.tsx
+++ b/addons/a11y/src/components/VisionSimulator.tsx
@@ -26,17 +26,17 @@ export const baseList = [
type Filter = Option | null;
-const getFilter = (filter: Filter) => {
- if (!filter) {
+const getFilter = (filterName: string) => {
+ if (!filterName) {
return 'none';
}
- if (filter.name === 'blurred vision') {
+ if (filterName === 'blurred vision') {
return 'blur(2px)';
}
- if (filter.name === 'grayscale') {
+ if (filterName === 'grayscale') {
return 'grayscale(100%)';
}
- return `url('#${filter}')`;
+ return `url('#${filterName}')`;
};
const Hidden = styled.div(() => ({
@@ -47,7 +47,7 @@ const Hidden = styled.div(() => ({
},
}));
-const ColorIcon = styled.span<{ filter: Filter }>(
+const ColorIcon = styled.span<{ filter: string }>(
{
background: 'linear-gradient(to right, #F44336, #FF9800, #FFEB3B, #8BC34A, #2196F3, #9C27B0)',
borderRadius: '1rem',
@@ -112,7 +112,7 @@ const getColorList = (active: Filter, set: (i: Filter) => void): Link[] => [
onClick: () => {
set(i);
},
- right: ,
+ right: ,
active: active === i,
};
}),
@@ -126,7 +126,7 @@ export const VisionSimulator = () => {