From 5cccb2848e6d6717c8db6fa05a15793206767b22 Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 5 Nov 2020 09:49:14 +0000 Subject: [PATCH] make quotes consistent --- src/SlashCommands.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SlashCommands.tsx b/src/SlashCommands.tsx index 8cda290d07..4f1759b15e 100644 --- a/src/SlashCommands.tsx +++ b/src/SlashCommands.tsx @@ -1045,7 +1045,7 @@ export const Commands = [ }), new Command({ command: "holdcall", - description: _td('Places the call in the current room on hold'), + description: _td("Places the call in the current room on hold"), category: CommandCategories.other, runFn: function(roomId, args) { const call = CallHandler.sharedInstance().getCallForRoom(roomId); @@ -1058,7 +1058,7 @@ export const Commands = [ }), new Command({ command: "unholdcall", - description: _td('Takes the call in the current room off hold'), + description: _td("Takes the call in the current room off hold"), category: CommandCategories.other, runFn: function(roomId, args) { const call = CallHandler.sharedInstance().getCallForRoom(roomId);