diff --git a/components/awtis/awtis-detay.js b/components/awtis/awtis-detay.js
index 0d66fe1..627ff54 100644
--- a/components/awtis/awtis-detay.js
+++ b/components/awtis/awtis-detay.js
@@ -85,12 +85,16 @@ export default function AwtisDetay({anAwtis}) {
) : (
- <>
- Parole
-
-
-
- >
+ paroles.data.length === 0 ? (
+ Aucune parole pour le moment
+ ) : (
+ <>
+ Parole
+
+
+
+ >
+ )
)}
diff --git a/components/awtis/awtis-kat.js b/components/awtis/awtis-kat.js
index 71697d6..a93d388 100644
--- a/components/awtis/awtis-kat.js
+++ b/components/awtis/awtis-kat.js
@@ -86,24 +86,26 @@ export default function AwtisKat({artiste}) {
{alias}
- {`${paroles.data.length} ${paroles.data.length > 1 ? 'paroles' : 'parole'}`}
+ {`${paroles.data.length === 0 ? 'Aucune parole pour le moment' : `${paroles.data.length} ${paroles.data.length > 1 ? 'paroles' : 'parole'}`}`}
-
-
-
-
-
+ {paroles.data.length > 0 && (
+
+
+
+
+
+ )}