From 19b13ea52dc7e655305f3db2733952cd49d046bd Mon Sep 17 00:00:00 2001 From: Poleg Kashti <46862163+polegkashti@users.noreply.github.com> Date: Wed, 16 Oct 2024 23:59:22 +0300 Subject: [PATCH] UX: Messages: Use "Newest" as default mode (#579) Co-authored-by: Roman Zabaluev --- frontend/src/lib/hooks/filterUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/hooks/filterUtils.ts b/frontend/src/lib/hooks/filterUtils.ts index 9e9d23fc6..5b3bcd2f0 100644 --- a/frontend/src/lib/hooks/filterUtils.ts +++ b/frontend/src/lib/hooks/filterUtils.ts @@ -1,8 +1,8 @@ import { PollingMode } from 'generated-sources'; export const ModeOptions = [ - { value: PollingMode.EARLIEST, label: 'Oldest' }, { value: PollingMode.LATEST, label: 'Newest' }, + { value: PollingMode.EARLIEST, label: 'Oldest' }, { value: PollingMode.TAILING, label: 'Live' }, { value: PollingMode.FROM_OFFSET, label: 'From offset' }, { value: PollingMode.TO_OFFSET, label: 'To offset' },