mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
refactor(web-server): make type prop optional in ShowModalLogs component
- Update type prop to be optional in the Props interface - Improve component flexibility by allowing undefined type
This commit is contained in:
parent
7f8f6ac64c
commit
2ae14c65cf
@ -36,7 +36,7 @@ interface Props {
|
|||||||
appName: string;
|
appName: string;
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
type: "standalone" | "swarm";
|
type?: "standalone" | "swarm";
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ShowModalLogs = ({
|
export const ShowModalLogs = ({
|
||||||
|
Loading…
Reference in New Issue
Block a user