Skip to content

Commit 42150da

Browse files
committed
Fix compile
1 parent a4c6402 commit 42150da

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

packages/backend/src/code.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ let getStyledTextSegmentsTime = 0;
2121
let getStyledTextSegmentsCalls = 0;
2222
let processColorVariablesTime = 0;
2323
let processColorVariablesCalls = 0;
24-
let nodeCacheHits = 0;
2524

2625
// Keep track of node names for sequential numbering
2726
const 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

packages/plugin-ui/src/components/CodePanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import EmptyState from "./EmptyState";
1212
import SettingsGroup from "./SettingsGroup";
1313
import CustomPrefixInput from "./CustomPrefixInput";
1414
import FrameworkTabs from "./FrameworkTabs";
15-
import { TailwindSettings } from "./tailwindSettings";
15+
import { TailwindSettings } from "./TailwindSettings";
1616

1717
interface CodePanelProps {
1818
code: string;

0 commit comments

Comments
 (0)