Mobile menu will only toggle on

Please read this documentation https://developer.wordpress.org/reference/functions/wp_nav_menu/

menu_id
(string) The ID that is applied to the ul element which forms the menu. The default is the menu slug, incremented.

container_id
(string) The ID that is applied to the container.

Try to add container_id in wp_nav_menu array(), I hope it’ll help you out. Thanks

wp_nav_menu(array(
  'theme_location' => 'header-menu',
  'menu_id' => 'mobile-menu',
  'container_id'    => 'mobile-menu',
  )
)