add: stores for pagination state

This commit is contained in:
Aryan Kothari 2024-08-01 12:24:05 -04:00
parent 4ffcabfb3f
commit 49199819db

View File

@ -41,6 +41,9 @@ export const showSettings = writable(false);
export const showArchivedChats = writable(false);
export const showChangelog = writable(false);
export const showCallOverlay = writable(false);
export const scrollPaginationEnabled = writable(true);
export const pageSkip = writable(0);
export const pageLimit = writable(-1);
export type Model = OpenAIModel | OllamaModel;