This message was deleted.
# general
s
This message was deleted.
e
You need to handle the undefined case,
identity.apply((id : outputs.web.ManagedServiceIdentityResponse | undefined) => /* return a string here */)
. The most simple thing is you could just tell the compiler to ignore the undefined case and just return
id!
b
thank you sir