diff --git a/app/templates/insights/fragments/category_explorer/charts/account.html b/app/templates/insights/fragments/category_explorer/charts/account.html
index 4f9c297..a3b91f3 100644
--- a/app/templates/insights/fragments/category_explorer/charts/account.html
+++ b/app/templates/insights/fragments/category_explorer/charts/account.html
@@ -1,4 +1,5 @@
{% load i18n %}
+{% if account_data.labels %}
@@ -77,3 +78,6 @@
);
}
+{% else %}
+
+{% endif %}
diff --git a/app/templates/insights/fragments/category_explorer/charts/currency.html b/app/templates/insights/fragments/category_explorer/charts/currency.html
index 16d5c9b..1622bb9 100644
--- a/app/templates/insights/fragments/category_explorer/charts/currency.html
+++ b/app/templates/insights/fragments/category_explorer/charts/currency.html
@@ -1,4 +1,5 @@
{% load i18n %}
+{% if currency_data.labels %}
@@ -78,3 +79,6 @@
);
}
+{% else %}
+
+{% endif %}
diff --git a/app/templates/insights/fragments/category_explorer/index.html b/app/templates/insights/fragments/category_explorer/index.html
index 650afe3..c131a02 100644
--- a/app/templates/insights/fragments/category_explorer/index.html
+++ b/app/templates/insights/fragments/category_explorer/index.html
@@ -8,26 +8,27 @@