Skip to content

Commit

Permalink
fix: 💄 comment link connection in header (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carolinedanslesnuages authored Dec 11, 2024
1 parent 83cc6e4 commit c2a827d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions client/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ interface QuickLink {
const unauthenticatedQuickLinks = ref([]);
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: "Rechercher une application",
to: { name: routeNames.SEARCHAPP },
},
];
});
// 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: "Rechercher une application",
to: { name: routeNames.SEARCHAPP },
},
];
// });
const authenticatedQuickLinks: QuickLink[] = [
{
Expand Down

0 comments on commit c2a827d

Please sign in to comment.