Display Customer Name in Customer Account page

I am customising the Customer Account page in my Shopify store. I am replacing the standard ‘Account Details’ with my own details. I am using {{ ‘customer.first_name’ }} but instead of displaying my name it is displaying a literal string ‘First name’ how can I fix this? Please see attached code and attached screenshot of issue.

<h2>{{ 'customer.account.details' | t }}</h2>

      <p>
        {{ 'customer.account.first_name' | t }}
        {{ 'customer.account.last_name' | t }}
      </p>

      {{ customer.default_address | format_address }}

According to the shopify documentation you sould use {{ ‘customer.first_name’ }} - remove the ‘account’ and the ‘t’ filter, because you can’t translate the customer’s name

Liquid objects: customer (shopify.dev)

Amazing, thank you @miguel_liquify ! I also had to remove the quotation marks now it works! Thank you for your help! :slightly_smiling_face: