mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 14:30:29 +00:00
run formatter
This commit is contained in:
parent
6df19f1828
commit
3b746162d2
52 changed files with 1376 additions and 1390 deletions
|
|
@ -31,11 +31,7 @@ const DiffView: Component<DiffViewProps> = (props) => {
|
|||
diffRows.push({
|
||||
left: chunk.removed ? line : chunk.added ? "" : line,
|
||||
right: chunk.added ? line : chunk.removed ? "" : line,
|
||||
type: chunk.added
|
||||
? "added"
|
||||
: chunk.removed
|
||||
? "removed"
|
||||
: "unchanged",
|
||||
type: chunk.added ? "added" : chunk.removed ? "removed" : "unchanged",
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue