diff --git a/src/init.js b/src/init.js index f7939fc12..3b8cb842f 100644 --- a/src/init.js +++ b/src/init.js @@ -21,7 +21,7 @@ import TooltipProvider from './ui/components/TooltipProvider.js'; import config from './utils/processConfig.tsx'; import {stateSanitizer} from './utils/reduxDevToolsConfig.tsx'; import {initLauncherHooks} from './utils/launcher.js'; -import initCrashReporter from './utils/electronCrashReporter'; +import initCrashReporter from './utils/electronCrashReporter.tsx'; import path from 'path'; const store = createStore( diff --git a/src/utils/electronCrashReporter.js b/src/utils/electronCrashReporter.tsx similarity index 97% rename from src/utils/electronCrashReporter.js rename to src/utils/electronCrashReporter.tsx index 2de169529..b2ce9335c 100644 --- a/src/utils/electronCrashReporter.js +++ b/src/utils/electronCrashReporter.tsx @@ -9,7 +9,7 @@ import {exists, mkdir} from 'fs'; import {promisify} from 'util'; import {crashReporter, remote} from 'electron'; import isProduction from '../utils/isProduction.js'; -import constants from '../fb-stubs/constants.tsx'; +import constants from '../fb-stubs/constants'; import {tmpName} from 'tmp'; import {resolve} from 'path';