Commit 49199819 authored by Aryan Kothari's avatar Aryan Kothari
Browse files

add: stores for pagination state

parent 4ffcabfb
...@@ -41,6 +41,9 @@ export const showSettings = writable(false); ...@@ -41,6 +41,9 @@ export const showSettings = writable(false);
export const showArchivedChats = writable(false); export const showArchivedChats = writable(false);
export const showChangelog = writable(false); export const showChangelog = writable(false);
export const showCallOverlay = 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; export type Model = OpenAIModel | OllamaModel;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment