Skip to content

Commit d98bb51

Browse files
Remove unused parameter. (#918)
1 parent afdbe4a commit d98bb51

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/simulator/SimulatorModules.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const SimulatorModules = ({ running, ...props }: SimulatorModulesProps) => {
113113
return null;
114114
}
115115
return (
116-
<RadioChatProvider group={state.radio.group} enabled={state.radio.enabled}>
116+
<RadioChatProvider group={state.radio.group}>
117117
<Flex
118118
{...props}
119119
flexDirection="column"

src/simulator/radio-hooks.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,9 @@ const RadioChatContext = React.createContext<
135135
>(undefined);
136136

137137
export const RadioChatProvider = ({
138-
enabled,
139138
group,
140139
children,
141140
}: {
142-
enabled: boolean;
143141
group: number;
144142
children: ReactNode;
145143
}) => {

0 commit comments

Comments
 (0)