Skip to content

Commit

Permalink
fix: backward compatible tunnel settings (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexplischke authored Sep 5, 2024
1 parent e34b562 commit f1e213b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webview-ui/test-generation/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ function App() {
devices: state.device ? [state.device] : [],
platform: platform.name,
platform_version: platform.version,
tunnel_name: tunnel?.name,
tunnel_owner: tunnel?.owner,
tunnel_name: tunnel?.name ?? '',
tunnel_owner: tunnel?.owner ?? '',
},
});
}}
Expand Down

0 comments on commit f1e213b

Please sign in to comment.