Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanharikr committed Aug 12, 2024
1 parent aec97d0 commit ae4b424
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,8 @@
}
//Purge localstorage cache -- replace old playground client_id with new if not a response flow
const hasAuthzRes = window.location?.hash?.includes('id_token') || window.location?.seach?.includes('id_token')
const hasAuthzRes =
window.location?.hash?.includes('id_token') || window.location?.seach?.includes('id_token');
if (!hasAuthzRes && _states.protocol_param_values.client_id === clientIds.playground_old) {
_states.protocol_param_values.client_id = clientIds.playground;
}
Expand Down Expand Up @@ -1721,7 +1722,9 @@
<span class="absolute -mt-9 bg-white dark:bg-[#151515] px-2 -mx-2">Invite Request</span>
<div class="max-w-lg mx-auto">
{#if canInvite}
<div class="overflow-x-auto bg-gray-200 dark:bg-charcoal rounded-sm p-4 break-words mb-6">
<div
class="overflow-x-auto bg-gray-200 dark:bg-charcoal rounded-sm p-4 break-words mb-6"
>
<h2 class="inline-flex items-center">
<span>Invite URL</span>
<button on:click={() => copy('invitePlaygroundURL', invitePlaygroundURL)}>
Expand Down

0 comments on commit ae4b424

Please sign in to comment.