Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
fix: use regular external link component for 2auth links (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsobries authored Aug 3, 2021
1 parent 7620cac commit 4ad7681
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
@php
use \Illuminate\View\ComponentAttributeBag;
$twoAuthLink1 = view('ark::external-link-confirm', [
$twoAuthLink1 = view('ark::external-link', [
'attributes' => new ComponentAttributeBag([]),
'text' => 'Authy',
'url' => 'https://authy.com',
'inline' => true,
])->render();
$twoAuthLink2 = view('ark::external-link-confirm', [
$twoAuthLink2 = view('ark::external-link', [
'attributes' => new ComponentAttributeBag([]),
'text' => 'Google Authenticator',
'url' => 'https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2',
'inline' => true,
])->render();
@endphp

Expand Down

0 comments on commit 4ad7681

Please sign in to comment.