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([
478478export const blockEngineUpdateSchema = z . object ( {
479479 name : z . string ( ) ,
480480 url : z . string ( ) ,
481+ ip : z . string ( ) ,
481482 status : blockEngineStatusSchema ,
482483} ) ;
483484
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ function JitoIcon() {
8484
8585 return (
8686 < 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 } ) ` }
8888 >
8989 < svg
9090 width = "16"
You can’t perform that action at this time.
0 commit comments