fix(appwrite): fix attribute typo

This commit is contained in:
Rıdvan Akca
2024-05-17 13:47:16 +02:00
parent bb251b16a9
commit fc7f1ddd69
3 changed files with 12 additions and 11 deletions

View File

@@ -16,11 +16,11 @@ export default {
queries: [
JSON.stringify({
method: 'orderAsc',
atttribute: 'name'
attribute: 'name',
}),
JSON.stringify({
method: 'limit',
values: [100]
values: [100],
}),
],
};

View File

@@ -11,11 +11,11 @@ export default {
queries: [
JSON.stringify({
method: 'orderAsc',
atttribute: 'name'
attribute: 'name',
}),
JSON.stringify({
method: 'limit',
values: [100]
values: [100],
}),
],
};