Skip to content

Commit d7eae3d

Browse files
Copilothuangyiirene
andcommitted
Fix unused variable in build-schemas.ts
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent b5f1fb1 commit d7eae3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/spec/scripts/build-schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let count = 0;
1717

1818
// Protocol now exports namespaces (Data, UI, System, AI, API)
1919
// We need to iterate through each namespace
20-
for (const [namespaceName, namespaceExports] of Object.entries(Protocol)) {
20+
for (const [_namespaceName, namespaceExports] of Object.entries(Protocol)) {
2121
if (typeof namespaceExports === 'object' && namespaceExports !== null) {
2222
// Iterate over all exports in each namespace
2323
for (const [key, value] of Object.entries(namespaceExports)) {

0 commit comments

Comments
 (0)