mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
console log
This commit is contained in:
parent
f43802a5fb
commit
7953100ec2
2 changed files with 3 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "calckey",
|
||||
"version": "12.119.0-calc.12.3",
|
||||
"version": "12.119.0-calc.12.4",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -80,8 +80,6 @@ watch(() => props.tag, () => {
|
|||
if (tagsEl) tagsEl.toggleContent(props.tag == null);
|
||||
});
|
||||
|
||||
watch(() => pinnedUsersList, () => {})
|
||||
|
||||
const tagUsers = $computed(() => ({
|
||||
endpoint: 'hashtags/users' as const,
|
||||
limit: 30,
|
||||
|
@ -92,13 +90,8 @@ const tagUsers = $computed(() => ({
|
|||
},
|
||||
}));
|
||||
|
||||
let pinnedUsersList = [];
|
||||
|
||||
os.api('pinned-users').then(res => {
|
||||
res?.forEach(u => {
|
||||
pinnedUsersList.push(u);
|
||||
});
|
||||
});
|
||||
const pinnedUsersList = os.api('pinned-users');
|
||||
console.log(pinnedUsersList);
|
||||
|
||||
const pinnedUsers = { endpoint: 'pinned-users' };
|
||||
const popularUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
||||
|
|
Loading…
Reference in a new issue