Skip to content

Commit

Permalink
fix: broken network page link
Browse files Browse the repository at this point in the history
  • Loading branch information
bartei81 committed Jun 2, 2024
1 parent 80f6587 commit 2822180
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def __init__(self, **kv):
self.add_widget(screen)

# TODO: Disable network for now, need to finish working on this
# screen = Screen(name="network")
# screen.add_widget(NetworkPanel())
# self.add_widget(screen)
screen = Screen(name="network")
screen.add_widget(NetworkPanel())
self.add_widget(screen)

screen = Screen(name="formats")
screen.add_widget(FormatsPanel(formats=app.formats))
Expand Down

0 comments on commit 2822180

Please sign in to comment.