From 852f23f0f557a2c892f840697604fdc9b3ad71d0 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 11 Dec 2025 19:13:17 +0530 Subject: [PATCH] fix: export --- .../dashboard/components-next/message/groupWithNext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components-next/message/groupWithNext.js b/app/javascript/dashboard/components-next/message/groupWithNext.js index aecb3f661..7e6b6820b 100644 --- a/app/javascript/dashboard/components-next/message/groupWithNext.js +++ b/app/javascript/dashboard/components-next/message/groupWithNext.js @@ -5,7 +5,7 @@ import { MESSAGE_TYPES } from './constants'; * @param {Array} searchList - Array of messages to check * @returns {Boolean} - Whether the message should be grouped with next */ -export const shouldGroupWithNext = (index, searchList) => { +export default (index, searchList) => { if (index === searchList.length - 1) return false; const current = searchList[index];