Merge pull request #139 from idpass/fix/116-request-screen

"Show this QR code to request a VC" displayed when sharing VC is already in process
This commit is contained in:
Danica Erediano
2022-03-28 11:32:26 +08:00
committed by GitHub

View File

@@ -19,9 +19,11 @@ export const RequestScreen: React.FC<MainRouteProps> = (props) => {
{controller.vidLabel.singular}
</Text>
) : (
<Text align="center">
Show this QR code to request {controller.vidLabel.singular}
</Text>
controller.isWaitingForConnection && (
<Text align="center">
Show this QR code to request {controller.vidLabel.singular}
</Text>
)
)}
</Column>