How to read nested array in Phoenix HTML Template

Good day, OGs
I have an @object returns as follow:

[[key: "email@email.com", value: 303071]]

How can I extract the key out of it inside HTML template ?
Thank you

<%= @object |> List.flatten() |> Keyword.get(:key) %>
1 Like