chore: next version upgrade (#4291)

This commit is contained in:
Piyush Gupta
2024-11-14 18:03:05 +05:30
committed by GitHub
parent a8ab4aaf2e
commit 98181bfe6c
178 changed files with 1454 additions and 1213 deletions

View File

@@ -70,7 +70,7 @@ export const createResponseNote = async (
};
export const getResponseNote = reactCache(
(responseNoteId: string): Promise<(TResponseNote & { responseId: string }) | null> =>
async (responseNoteId: string): Promise<(TResponseNote & { responseId: string }) | null> =>
cache(
async () => {
try {
@@ -101,7 +101,7 @@ export const getResponseNote = reactCache(
);
export const getResponseNotes = reactCache(
(responseId: string): Promise<TResponseNote[]> =>
async (responseId: string): Promise<TResponseNote[]> =>
cache(
async () => {
try {