chore(acc): lint

This commit is contained in:
Chuck Driesler
2025-07-22 20:41:11 +01:00
parent 06f12c134c
commit c2ff02f0f0
2 changed files with 2 additions and 1 deletions
@@ -224,7 +224,7 @@ const { onResult: onProjectAccSyncItemsUpdated } = useSubscription(
)
const disabledItemPredicate = (item: ProjectPageLatestItemsModelItemFragment) => {
return accSyncItems.value.find((i) => i.modelId === item.id)
return !!accSyncItems.value.find((i) => i.modelId === item.id)
}
onProjectAccSyncItemsUpdated((res) => {
@@ -35,6 +35,7 @@ export const getAutodeskAccessToken = async (): Promise<string> => {
Accept: 'application/json'
},
body: new URLSearchParams({
/* eslint-disable-next-line */
grant_type: 'client_credentials',
scope: 'data:read account:read viewables:read'
}).toString()