I want to convert a data type into an optional Data type. I tried the following format:
let newOptionalAdminId = Optional newAdminId
However, I am getting the following error with this
Data constructor not in scope:
Optional : TalentId -> Optional TalentId
TalentId is the contract ID for the Template Talent. How can I convert this into an optional datatype?