Skip to content

Commit 6ab731a

Browse files
Merge branch 'dev' into talha/feedback-fixes
2 parents 3b1e617 + d1bf247 commit 6ab731a

File tree

21 files changed

+270
-259
lines changed

21 files changed

+270
-259
lines changed

src/api/session/signUpApi.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ interface NewAccount {
1212
userId: string;
1313
username: string;
1414
fullName: any;
15-
email: string;
1615
password: string;
1716
token: string;
1817
}
@@ -31,7 +30,6 @@ const signUpApi = ({ account }: Params): Promise<void> =>
3130
data: JSON.stringify({
3231
name: account.username,
3332
full_name: account.fullName,
34-
email: account.email,
3533
password: account.password,
3634
activation_token: account.token
3735
}),

src/redux/actions/session/signupAction.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import signUpApi from '../../../api/session/signUpApi';
44
export const signUpAction = ({
55
userId,
66
username,
7-
email,
87
fullName,
98
password,
109
token,
@@ -13,7 +12,6 @@ export const signUpAction = ({
1312
}: {
1413
userId: string;
1514
username: string;
16-
email: string;
1715
fullName: string;
1816
password: string;
1917
token: any;
@@ -32,7 +30,6 @@ export const signUpAction = ({
3230
account: {
3331
userId,
3432
username,
35-
email,
3633
fullName,
3734
password,
3835
token,

src/services/locales/zu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
"text": "Stack Components"
292292
},
293293
"setting": {
294-
"text": "Setting"
294+
"text": "Settings"
295295
}
296296
}
297297
},

src/ui/components/Filters/filter.module.scss

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
height: 4rem;
55
background-color: $whiteColor;
66
border: 1px solid var(--lightGrey);
7-
border-radius: 4px;
87
box-sizing: border-box;
98
display: flex;
109
// width: 93%;
@@ -13,6 +12,25 @@
1312
padding-left: 1.6rem;
1413
padding-right: 1.6rem;
1514
outline: 0;
16-
margin-top: 26px;
15+
margin-top: 23px;
1716
line-height: 37px;
1817
}
18+
19+
.tile {
20+
height: 28px;
21+
background-color: #EDE4FF;
22+
margin-top: -5px !important;
23+
margin-left: 7px !important;
24+
border-radius: 4px;
25+
padding: 5px 11px !important
26+
}
27+
28+
.removeIcon {
29+
margin-top: 23px !important;
30+
padding-top: 4px !important;
31+
width: 34px;
32+
height: 40px;
33+
border: 1px solid #C9CBD0;
34+
border-top-right-radius: 4px;
35+
border-bottom-right-radius: 4px
36+
}

0 commit comments

Comments
 (0)