add search animation

This commit is contained in:
smanylov
2026-01-30 14:54:52 +07:00
parent c01499f4f1
commit 82c7bb3635
3 changed files with 20 additions and 2 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ export async function searchUserFiles(fileId: string) {
const token = await getSessionData('token');
try {
const response = await fetch(`${API_BASE_URL}/api/v1/files/${fileId}/similar?auth_token=${token}`, {
const response = await fetch(`${API_BASE_URL}/api/v1/files/${fileId}/similar?similarityLevels=DUPLICATE,SIMILARITY&auth_token=${token}`, {
method: 'GET'
});