File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ let getStyledTextSegmentsTime = 0;
2121let getStyledTextSegmentsCalls = 0 ;
2222let processColorVariablesTime = 0 ;
2323let processColorVariablesCalls = 0 ;
24- let nodeCacheHits = 0 ;
2524
2625// Keep track of node names for sequential numbering
2726const nodeNameCounters : Map < string , number > = new Map ( ) ;
@@ -406,7 +405,6 @@ export const nodesToJSON = async (
406405) : Promise < SceneNode [ ] > => {
407406 // Reset name counters for each conversion
408407 nodeNameCounters . clear ( ) ;
409- nodeCacheHits = 0 ;
410408
411409 const exportJsonStart = Date . now ( ) ;
412410 // First get the JSON representation of nodes
@@ -444,7 +442,6 @@ export const run = async (settings: PluginSettings) => {
444442 getStyledTextSegmentsCalls = 0 ;
445443 processColorVariablesTime = 0 ;
446444 processColorVariablesCalls = 0 ;
447- nodeCacheHits = 0 ;
448445 variableCache . clear ( ) ;
449446 clearWarnings ( ) ;
450447
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import EmptyState from "./EmptyState";
1212import SettingsGroup from "./SettingsGroup" ;
1313import CustomPrefixInput from "./CustomPrefixInput" ;
1414import FrameworkTabs from "./FrameworkTabs" ;
15- import { TailwindSettings } from "./tailwindSettings " ;
15+ import { TailwindSettings } from "./TailwindSettings " ;
1616
1717interface CodePanelProps {
1818 code : string ;
You can’t perform that action at this time.
0 commit comments