diff --git a/frontend/src/utils/text.ts b/frontend/src/utils/text.ts index b86f99db..e5db95e3 100644 --- a/frontend/src/utils/text.ts +++ b/frontend/src/utils/text.ts @@ -7,5 +7,5 @@ */ export const truncate = (text: string, length = 300) => { - return text.length > length ? text.substring(0, length) : text; + return text.length > length ? text.substring(0, length) + "..." : text; };