I was able to figure it out!
I had to add some custom CSS, For what ever reason the class collapse was setting the menu to display:none for the desktop media query.
For anyone else who has this issue, here is the code I used:
@media (min-width:980px){.nav-collapse.collapse{display:block!important}}