-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: dashboard UI refactor #121
Conversation
All the files are now into the drive folder => /drive for the endpoint
Add dynamic tab item
Add this dependency to manage random profile avatar
When the class is construct, the account variable is set thanks to the constructor. Only an available account (not undefined) can be passed into this constructor so the account bariable can't be undefined.
Remove this feature due to display bug
✅ Deploy Preview for nimble-praline-605cf6 ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
❌ Deploy Preview for soft-pixie-bff6c5 failed.
|
import getFileType from '../../../utils/getFileType'; | ||
import formatDate from '../../../utils/formatDate'; | ||
import formatFileSize from '../../../utils/formatFileSize'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import getFileType from '../../../utils/getFileType'; | |
import formatDate from '../../../utils/formatDate'; | |
import formatFileSize from '../../../utils/formatFileSize'; | |
import getFileType from './utils/getFileType'; | |
import formatDate from './utils/formatDate'; | |
import formatFileSize from './utils/formatFileSize'; |
should work as we have set a baseSrc
in tsconfig.json
// </Tabs> | ||
// </VStack> | ||
// </VStack> | ||
// ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove this if it's not used 😄
import { useState } from 'react'; | ||
import { BsFillFilePersonFill } from 'react-icons/bs'; | ||
|
||
import { IPCContact } from 'types/types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { IPCContact } from 'types/types'; | |
import type { IPCContact } from 'types/types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the purpose of this?
import { useState } from 'react'; | ||
import { BsFileEarmarkFill } from 'react-icons/bs'; | ||
|
||
import { IPCFile } from 'types/types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { IPCFile } from 'types/types'; | |
import type { IPCFile } from 'types/types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the purpose of this?
Description
Update dashboard UI pages:
Changes include
Checklist