Site icon Hip-Hop Website Design and Development

wp_nav_menu not selecting teh correct menu

I’m having a weird issue. I have 2 menus, and registered them in functions.php, like this:

add_theme_support( 'menus' );
register_nav_menu( 'primary', 'Top Nav' );
register_nav_menu( 'footer', 'Footer' );

In my header, I have the following code

<?php
    wp_nav_menu(array(
    'menu' => 'Top Nav',
    'theme_location' => 'primary',
    'depth' => 2,
    'container' => 'div',
    'container_class' => 'navbar-collapse collapse',
    'menu_class' => 'nav navbar-nav navbar-right',
    'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
    'walker' => new wp_bootstrap_navwalker()
)); ?>

However, the header always display the other menu, assigned to footer, no matter what I do. I tried using menu and theme_location alone, changing names, adding another location and assigning the menu to this new location, un-assigning the other menu and anything I could think of, to no avail. Nothing I do seems to work, exception made of deleting the other menu, which of course is not the idea since I want both of them.

Just in case, the footer menu is called like this

<?php wp_nav_menu( array( 'theme_location' => 'footer' ) ); ?>

Any idea on what am I doing wrong?