File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ export const blockEngineStatusSchema = z.enum([
478
478
export const blockEngineUpdateSchema = z . object ( {
479
479
name : z . string ( ) ,
480
480
url : z . string ( ) ,
481
+ ip : z . string ( ) ,
481
482
status : blockEngineStatusSchema ,
482
483
} ) ;
483
484
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ function JitoIcon() {
84
84
85
85
return (
86
86
< Tooltip
87
- content = { `Currently ${ blockEngine . status } ${ blockEngine . status === "disconnected" ? "from" : "to" } ${ blockEngine . name } - ${ blockEngine . url } ` }
87
+ content = { `Currently ${ blockEngine . status } ${ blockEngine . status === "disconnected" ? "from" : "to" } ${ blockEngine . name } - ${ blockEngine . url } ( ${ blockEngine . ip } ) ` }
88
88
>
89
89
< svg
90
90
width = "16"
You can’t perform that action at this time.
0 commit comments