From 3885e3c8c7df9c1eff183e4550092dec663045db Mon Sep 17 00:00:00 2001
From: Martin Berlanda <martinberlanda@hotmail.com>
Date: Tue, 16 Jan 2024 18:25:31 -0300
Subject: [PATCH] Remove extra label call in ability and proficiency templates

---
 templates/ability.hbs     | 2 +-
 templates/proficiency.hbs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/ability.hbs b/templates/ability.hbs
index 1d0a5bc..195d5cd 100644
--- a/templates/ability.hbs
+++ b/templates/ability.hbs
@@ -1,5 +1,5 @@
 <div class="dnd5e-cm-content">
     <span class="dnd5e-cm-text">
-        {{characterName}} | {{ability.label.label}} {{#if ability.old}}{{ability.old}} -> {{/if}}{{ability.value}}
+        {{characterName}} | {{ability.label}} {{#if ability.old}}{{ability.old}} -> {{/if}}{{ability.value}}
     </span>
 </div>
diff --git a/templates/proficiency.hbs b/templates/proficiency.hbs
index fd737f6..b71e506 100644
--- a/templates/proficiency.hbs
+++ b/templates/proficiency.hbs
@@ -1,5 +1,5 @@
 <div class="dnd5e-cm-content">
     <span class="dnd5e-cm-text">
-        {{characterName}} | {{proficiency.label.label}} - {{proficiency.value}}
+        {{characterName}} | {{proficiency.label}} - {{proficiency.value}}
     </span>
 </div>