Skip to content

Commit 6e8a76d

Browse files
fix(billing): use default import for billingEvents in README example
1 parent 5585060 commit 6e8a76d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/billing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ await BillingUsageService.increment(organizationId, 'documents.create', 1);
5353
Listen for plan changes in downstream modules:
5454

5555
```js
56-
import { billingEvents } from '../billing/lib/events.js';
56+
import billingEvents from '../billing/lib/events.js';
5757

5858
billingEvents.on('plan.changed', ({ organizationId, previousPlan, newPlan, isDowngrade }) => {
5959
if (isDowngrade) {

0 commit comments

Comments
 (0)