Skip to content

Commit 338acf5

Browse files
committed
Prettier why you no run the first time
1 parent 873840c commit 338acf5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: src/components/views/Instance/Edit/Repository.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,10 @@ class Repository extends React.Component<IProps, IState> {
319319
const deployinterval = setInterval(() => {
320320
const targetJob = JobsController.jobs.get(jobId);
321321
if (typeof targetJob?.progress === "number" || targetJob?.stoppedAt) {
322-
if (targetJob.errorCode === undefined && targetJob.exceptionDetails === undefined) {
322+
if (
323+
targetJob.errorCode === undefined &&
324+
targetJob.exceptionDetails === undefined
325+
) {
323326
void DreamMakerClient.startCompile(this.context.instance.id).then(
324327
response => {
325328
if (response.code === StatusCode.ERROR) {

0 commit comments

Comments
 (0)