diff --git a/server/src/restaurants.ts b/server/src/restaurants.ts
index 906b57b..a234f0a 100644
--- a/server/src/restaurants.ts
+++ b/server/src/restaurants.ts
@@ -34,7 +34,7 @@ const capitalize = (word: string): string => {
 }
 
 const sanitizeText = (text: string): string => {
-    return text.replace('\t', '').trim();
+    return text.replace('\t', '').replace(' , ', ', ').trim();
 }
 
 /**