Skip to content

Commit

Permalink
fix: 💄 comment link connection in header
Browse files Browse the repository at this point in the history
  • Loading branch information
Carolinedanslesnuages committed Dec 11, 2024
1 parent 83cc6e4 commit d16372b
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions client/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,24 @@ interface QuickLink {
const unauthenticatedQuickLinks = ref([]);
authentication.createLoginUrl({ redirectUri: window.location.href }).then((loginUrlLink) => {
// authentication.createLoginUrl({ redirectUri: window.location.href }).then((loginUrlLink) => {
unauthenticatedQuickLinks.value = [
// {
// label: "Se connecter",
// to: loginUrlLink, // URL temporaire
// icon: "ri-lock-line",
// iconAttrs: { title: "Se connecter" },
// },
{
label: "Se connecter",
to: loginUrlLink, // URL temporaire
icon: "ri-lock-line",
iconAttrs: { title: "Se connecter" },
label: "Rechercher une application",
to: { name: routeNames.SEARCHAPP },
},
{
label: "Rechercher une application",
to: { name: routeNames.SEARCHAPP },
},
];
});
// });
const authenticatedQuickLinks: QuickLink[] = [
{
Expand Down

0 comments on commit d16372b

Please sign in to comment.