Skip to content

Commit

Permalink
Deploy again
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Aug 20, 2024
1 parent 0e8becb commit 5473c06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/src/movies/editor/EditorMovie.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ const EditorMovie = (props: { mode: "nest" | "sdk" }) => {
disabled={progress === true || swagger === null}
onClick={() => generate()}
>
{error ?? (progress ? "Generating..." : "Generate Editor")}
{progress ? "Generating..." : "Generate Editor"}
</Button>
{...error ? [<div>{error}</div>] : []}
</Paper>
);
};
Expand Down

0 comments on commit 5473c06

Please sign in to comment.