Skip to content

Commit a366231

Browse files
committed
Fix: deploy models
1 parent 9dc8ffa commit a366231

File tree

11 files changed

+5
-6
lines changed

11 files changed

+5
-6
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ assets
44
@types
55
package-lock.json
66
yarn.lock
7-
7+
node_modules
88

99
# Logs
1010
logs

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ assets
44
@types
55
package-lock.json
66
yarn.lock
7+
lib/
78

89
# Logs
910
logs
@@ -87,7 +88,6 @@ typings/
8788

8889
# Nuxt.js build / generate output
8990
.nuxt
90-
dist
9191

9292
# Gatsby files
9393
.cache/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import axios, { AxiosError } from "axios";
1+
import { AxiosError } from "axios";
22

33
export class CustomAxiosError extends Error {
44
name: string = 'Data transfer Error';
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import qs from "querystring";
1+
import qs from 'querystring';
22
import { AxiosRequestConfig } from "axios";
33
import { IShortMessage } from "../types/send/SMS.types";
44
import { ILongMessage } from "../types/send/LMS.types";

0 commit comments

Comments
 (0)