mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-27 00:09:31 +00:00
Two companion test files still used the bare matrix-js-sdk import while the production code in event-helpers.ts had been migrated to the matrix-js-sdk/lib/matrix.js subpath: - extensions/matrix/src/matrix/sdk/event-helpers.test.ts (flagged by greptile P2) - extensions/matrix/src/matrix/client/file-sync-store.test.ts (found via grep while addressing the P2) After this commit, all matrix-js-sdk imports across extensions/matrix/src go through the same subpath. Verified with: grep -rn 'from "matrix-js-sdk"' extensions/matrix/src/ | grep -v lib returns no results. Addresses greptile P2 finding on PR #68498.