Skip to content

Commit b525661

Browse files
committed
small clean
1 parent 66c7373 commit b525661

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app.config.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ConfigContext, ExpoConfig } from "expo/config";
1+
import { ExpoConfig } from "expo/config";
22
import { version } from "./package.json";
33

44
type EnvironmentConfig = {
@@ -74,12 +74,11 @@ const settings: Record<Environment, EnvironmentConfig> = {
7474
},
7575
};
7676

77-
export default ({ config: defaultConfig }: ConfigContext): ExpoConfig => {
77+
export default (): ExpoConfig => {
7878
const environment = (process.env.EXPO_ENV || "dev") as Environment;
7979
const config = settings[environment];
8080

8181
return {
82-
...defaultConfig,
8382
name: config.appName,
8483
scheme: config.scheme,
8584
owner: "converse",

0 commit comments

Comments
 (0)