Skip to content
This repository was archived by the owner on Feb 15, 2022. It is now read-only.

Commit 1f04b69

Browse files
committed
wip
1 parent 7f64e6d commit 1f04b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function Directive({ directive }) {
5454
}
5555
}
5656
arg = arg !== null ? " " + arg.toString() : "";
57-
return ` ${directive.name}${directive.arg !== null ? " " + arg : ""}`;
57+
return ` ${directive.name}${directive.arg !== null ? arg : ""}`;
5858
}
5959

6060
function TimeInput({ name, value, time, onArgChange, onTimeChange, active }) {

0 commit comments

Comments
 (0)