Move ...rest param
This commit is contained in:
parent
4548c1af23
commit
4efd88905d
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ export function OpenIDLoader({ client, roomName, ...rest }: Props) {
|
||||||
if (error) {
|
if (error) {
|
||||||
return <ErrorView error={error} />;
|
return <ErrorView error={error} />;
|
||||||
} else if (sfuConfig) {
|
} else if (sfuConfig) {
|
||||||
return <ActiveCall client={client} {...rest} sfuConfig={sfuConfig} />;
|
return <ActiveCall client={client} sfuConfig={sfuConfig} {...rest} />;
|
||||||
} else {
|
} else {
|
||||||
return <LoadingView />;
|
return <LoadingView />;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue