more cleanup

This commit is contained in:
karamvir
2023-08-11 01:36:34 -07:00
parent 9ef1e3cd9b
commit a223357ef1
2 changed files with 3 additions and 16 deletions
+1
View File
@@ -108,6 +108,7 @@ export const DoubleInput = <
};
type UsableResources = Exclude<Types.ResourceTarget["type"], "System">;
export const ResourceSelector = <T extends UsableResources>({
type,
selected,
@@ -59,7 +59,7 @@ const BuildConfigInner = ({
/>
)}
{/* Networking Config */}
{/* Repo Config */}
{show === "repo" && (
<ConfigAgain
config={config}
@@ -69,7 +69,7 @@ const BuildConfigInner = ({
/>
)}
{/* Environment Config */}
{/* Docker Config */}
{show === "docker" && (
<ConfigAgain
config={config}
@@ -84,20 +84,6 @@ const BuildConfigInner = ({
}}
/>
)}
{/* Environment Config
{show === "volumes" && (
<ConfigAgain
config={config}
update={update}
set={(u) => set((p) => ({ ...p, ...u }))}
components={{
volumes: (value, set) => (
<PortsConfig ports={value} set={set} />
),
}}
/>
)} */}
</CardContent>
</Card>
</div>