fix: onboarding screen design issues (#1517)
* fix: projects empty state flicker * fix: tour images padding * chore: add greeting icon on the dashboard * chore: update email id font weight * fix: placeholder color
This commit is contained in:
parent
411a661abd
commit
864e592bc5
10 changed files with 19 additions and 11 deletions
|
|
@ -12,9 +12,9 @@ export const orderArrayBy = (
|
|||
key: string,
|
||||
ordering: "ascending" | "descending" = "ascending"
|
||||
) => {
|
||||
const array = [...orgArray];
|
||||
if (!orgArray || !Array.isArray(orgArray) || orgArray.length === 0) return [];
|
||||
|
||||
if (!array || !Array.isArray(array) || array.length === 0) return [];
|
||||
const array = [...orgArray];
|
||||
|
||||
if (key[0] === "-") {
|
||||
ordering = "descending";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue