Skip to content

Commit

Permalink
chore(suite-native): fix typo in metro.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jbazant authored and vytick committed Feb 22, 2025
1 parent 3419c1a commit 446fc4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suite-native/app/metro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const nodejs = require('node-libs-browser');

const jsonExpoConfig = getSentryExpoConfig(__dirname);
const defaultSourceExts = jsonExpoConfig.resolver.sourceExts;
const additionalSOurceExts = process.env.RN_SRC_EXT ? process.env.RN_SRC_EXT.split(',') : [];
const sourceExts = [...additionalSOurceExts, ...defaultSourceExts];
const additionalSourceExts = process.env.RN_SRC_EXT ? process.env.RN_SRC_EXT.split(',') : [];
const sourceExts = [...additionalSourceExts, ...defaultSourceExts];

/**
* Metro configuration
Expand Down

0 comments on commit 446fc4e

Please sign in to comment.