Move ...rest param

This commit is contained in:
David Baker 2023-06-30 16:13:02 +01:00
parent 4548c1af23
commit 4efd88905d

View file

@ -48,7 +48,7 @@ export function OpenIDLoader({ client, roomName, ...rest }: Props) {
if (error) {
return <ErrorView error={error} />;
} else if (sfuConfig) {
return <ActiveCall client={client} {...rest} sfuConfig={sfuConfig} />;
return <ActiveCall client={client} sfuConfig={sfuConfig} {...rest} />;
} else {
return <LoadingView />;
}