This commit is contained in:
spencerrlongg 2024-07-03 16:12:55 -05:00
parent 4b9727067b
commit a6690493b0
2 changed files with 3 additions and 2 deletions

View file

@ -49,6 +49,6 @@ class PersonalAccessTokens extends Component
{ {
//this needs safety (though the scope of auth::user might kind of do it...) //this needs safety (though the scope of auth::user might kind of do it...)
//seems like it does, test more //seems like it does, test more
Auth::user()->tokens()->find($tokenId)->delete(); Auth::user()->tokens()->find($tokenId)?->delete();
} }
} }

View file

@ -48,7 +48,8 @@
</td> </td>
<!-- Delete Button --> <!-- Delete Button -->
<td style="vertical-align: middle;" class="text-right"> <td style="vertical-align: middle;" class="text-right">
<a class="action-link btn btn-danger btn-sm" wire:click="deleteToken('{{ $token->id }}')"> <a class="action-link btn btn-danger btn-sm" wire:click="deleteToken('{{ $token->id }}')"
wire:loading.attr="disabled">
<i class="fas fa-trash"></i> <i class="fas fa-trash"></i>
</a> </a>
</td> </td>