Skip to content

Commit

Permalink
chore: fix crash in example app due to typo in export (#2374)
Browse files Browse the repository at this point in the history
## Description

The `Test2332` was wrongly exported as `Test2232` from `index`,
resulting in two exports with the same name => leading to crash.

## Changes

Renamed the export appropriately.

## Test code and steps to reproduce

Run any example app.

## Checklist

- [ ] Ensured that CI passes
  • Loading branch information
kkafar authored Oct 2, 2024
1 parent c711d3c commit 64d2d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/src/tests/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export { default as Test2235 } from './Test2235';
export { default as Test2252 } from './Test2252';
export { default as Test2271 } from './Test2271';
export { default as Test2282 } from './Test2282';
export { default as Test2232 } from './Test2332';
export { default as Test2332 } from './Test2332';
export { default as TestScreenAnimation } from './TestScreenAnimation';
export { default as TestHeader } from './TestHeader';
export { default as TestModalNavigation } from './TestModalNavigation';

0 comments on commit 64d2d64

Please sign in to comment.