From 6ccb7e91452a34eab31eab9a1e92cfa5685b84f6 Mon Sep 17 00:00:00 2001 From: Jaiwanth Date: Wed, 29 Sep 2021 19:37:21 +0530 Subject: [PATCH] Space after brand --- src/utils/exportUtils/Exporter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/exportUtils/Exporter.ts b/src/utils/exportUtils/Exporter.ts index becc36449d..3209dd085b 100644 --- a/src/utils/exportUtils/Exporter.ts +++ b/src/utils/exportUtils/Exporter.ts @@ -72,7 +72,7 @@ export default abstract class Exporter { protected async downloadZIP(): Promise { const brand = SdkConfig.get().brand; - const filename = `${brand} - Chat Export -${formatFullDateNoDay(new Date())}.zip`; + const filename = `${brand} - Chat Export - ${formatFullDateNoDay(new Date())}.zip`; const { default: JSZip } = await import('jszip'); const zip = new JSZip();