Reformat using prettier
diff --git a/src/utils/ellipsis.ts b/src/utils/ellipsis.ts
index 6ec5888..4ba1f72 100644
--- a/src/utils/ellipsis.ts
+++ b/src/utils/ellipsis.ts
@@ -1,4 +1,4 @@
 export default (str: string, max: number): string => {
     if (str.length <= max) return str;
     return str.slice(0, max - 3) + "...";
-}
\ No newline at end of file
+};