Commit b8b0387d authored by Neosoulink's avatar Neosoulink
Browse files

refactor: review

parent c5fdccaf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -107,7 +107,8 @@ const environment: Environment = {
	/**
	 * Contain app endpoints
	 *
	 * _🚧 warning: if you're using a AVD (Android Virtual Device) and localhost don't works, replace it with **10.0.2.2**_
	 * _🚧 warning: if you're using a AVD (Android Virtual Device)_
	 * _and localhost doesn't works, replace it with **10.0.2.2**_
	 */
	ENDPOINT: {
		GQL: 'http://localhost:8443/graphql',
+1 −3
Original line number Diff line number Diff line
@@ -106,9 +106,7 @@ export type Env = Readonly<{
}>;

// TODO: validate better merchantIDs
const merchantIDs: any = makeValidator((x) => {
	return x;
});
const merchantIDs: any = makeValidator((x) => x);

const opt: CleanOptions<Env> = {};