kitchen-simulator 5.0.0-test.27 → 5.0.0-test.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -2,8 +2,8 @@ import axios from 'axios';
|
|
|
2
2
|
import { useQuery } from 'react-query';
|
|
3
3
|
import ls from 'localstorage-slim';
|
|
4
4
|
import {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
LOCAL_STORAGE_CUSTOMER_INFO,
|
|
6
|
+
LOCAL_STORAGE_TOKEN_VALUE
|
|
7
7
|
} from '../../src/constants';
|
|
8
8
|
|
|
9
9
|
function formatPrice(value) {
|
|
@@ -3,14 +3,12 @@ import axios from 'axios';
|
|
|
3
3
|
import { useQuery } from 'react-query';
|
|
4
4
|
import ls from 'localstorage-slim';
|
|
5
5
|
import {
|
|
6
|
+
ENCODED_QUERY_PARAM_TOKEN,
|
|
6
7
|
LOCAL_STORAGE_CUSTOMER_INFO,
|
|
7
8
|
LOCAL_STORAGE_ORIGINAL_TOKEN,
|
|
8
|
-
LOCAL_STORAGE_TOKEN_VALUE
|
|
9
|
-
} from '../../src/constants';
|
|
10
|
-
import {
|
|
11
|
-
ENCODED_QUERY_PARAM_TOKEN,
|
|
9
|
+
LOCAL_STORAGE_TOKEN_VALUE,
|
|
12
10
|
QUERY_PARAM_TOKEN
|
|
13
|
-
} from '../../
|
|
11
|
+
} from '../../src/constants';
|
|
14
12
|
|
|
15
13
|
const LOG_PREFIX = `[Cross Sign On]`;
|
|
16
14
|
|