Skip to content

Commit

Permalink
Remove unused changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMicroNova committed Jan 9, 2025
1 parent 2706302 commit 9b93cab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@ const RESTART_DESC = "Sometimes the stream gets into a bad state and neds to be

const TextArg = ({ name, desc, type="text", value, onChange, required, error }) => {

const apply = (stream) => {
return fetch("/api/stream", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(stream),
});
};

return (
<>
<div className="stream-field">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const TypeSelectModal = ({ onClose, onSelect }) => {

return (
<>
<Modal className="modal" onClose={onClose}>
<Modal onClose={onClose}>
<Card className="type-select-card">
<div className="type-select-title">Select A Stream Type</div>
<div>
Expand Down

0 comments on commit 9b93cab

Please sign in to comment.