diff --git a/package.json b/package.json index 39903c714..a962cb7d7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tokens-studio-for-figma", "version": "1.0.0", - "plugin_version": "1.36.3", + "plugin_version": "1.36.4", "description": "Tokens Studio for Figma", "license": "MIT", "scripts": { diff --git a/script/release.sh b/script/release.sh index f1a7cba8c..38bcb6bac 100755 --- a/script/release.sh +++ b/script/release.sh @@ -1,4 +1,4 @@ -VERSION=figma-tokens@1.36.3 +VERSION=figma-tokens@1.36.4 sentry-cli releases -p figma-tokens files "$VERSION" upload-sourcemaps --ext ts --ext tsx --ext map --ext js --ignore-file .sentryignore . sentry-cli releases set-commits "$VERSION" --auto sentry-cli releases finalize "$VERSION" \ No newline at end of file diff --git a/src/app/store/remoteTokens.tsx b/src/app/store/remoteTokens.tsx index 0382c8a47..3df5f5b32 100644 --- a/src/app/store/remoteTokens.tsx +++ b/src/app/store/remoteTokens.tsx @@ -450,7 +450,6 @@ export default function useRemoteTokens() { ]); const checkRemoteChange = useCallback(async (context: StorageTypeCredentials = api): Promise => { - track('checkRemoteChange', { provider: context?.provider }); let hasChange = false; switch (context?.provider) { case StorageProviderType.JSONBIN: { diff --git a/src/plugin/setTextValuesOnTarget.ts b/src/plugin/setTextValuesOnTarget.ts index d38445a03..f43b43089 100644 --- a/src/plugin/setTextValuesOnTarget.ts +++ b/src/plugin/setTextValuesOnTarget.ts @@ -1,7 +1,7 @@ /* eslint-disable no-param-reassign */ import { SingleTypographyToken } from '@/types/tokens'; import { transformValue } from './helpers'; -import { trackFromPlugin, notifyUI } from './notifiers'; +import { notifyUI } from './notifiers'; export default async function setTextValuesOnTarget( target: TextNode | TextStyle, @@ -80,7 +80,6 @@ export default async function setTextValuesOnTarget( } if (hasErrored) { notifyUI(`Error setting font family/weight combination for ${family}/${style}`); - trackFromPlugin('Font not found', { family, style }); } } try {