-
Notifications
You must be signed in to change notification settings - Fork 57
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
Fix: lint/format fixes in several files #540
Conversation
There are some conflicts on this branch after merging #536 |
Signed-off-by: Dhairya Majmudar <[email protected]>
Yes I have resolved that confilict. |
<<<<<<< HEAD | ||
function Row({ title, value, fmt }) { | ||
var valFmt = value.center; | ||
if (fmt == "time") { | ||
valFmt = secondToMicrosecond(value.center); | ||
} else if (fmt == "memory") { | ||
valFmt = formatByte(value.center); | ||
} | ||
======= | ||
function Row({ title, value, fmt }:RowProps) { | ||
var valFmt = value.center | ||
if (fmt == "time") { | ||
valFmt = secondToMicrosecond(value.center) | ||
} else if (fmt == "memory") { | ||
valFmt = formatByte(value.center) | ||
} | ||
>>>>>>> 85cc5af151fab94e3a4fbf022d03bf596ae36e8f |
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.
Something bad has happened with a merge here, the frontend do not start with those.
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.
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.
It should not, normally. But anyway these merge hints have to be removed
I have opened a new PR to resolve all these conflicts. Closing this one. |
What kind of change does this PR introduce?
Formats the code files.
Issue Number:
#539
Screenshots/videos:
N/A
If relevant, did you update the documentation?
N/A
Summary
Code files are now formatted