fix(messaging): clarify Sandbox switch for APNS provider

This commit is contained in:
Steven Nguyen
2024-02-27 20:06:39 +01:00
committed by Torsten Dittmann
parent dce4dc4a98
commit faad1454a0
2 changed files with 3 additions and 2 deletions
@@ -120,7 +120,7 @@
{:else if input.type === 'switch'}
<InputSwitch label={input.label} id={input.name} bind:value={params[input.name]}>
<svelte:fragment slot="description">
{input.description}
<p>{@html input.description}</p>
</svelte:fragment>
</InputSwitch>
{:else if input.type === 'checkbox'}
@@ -167,7 +167,8 @@ export const providers: ProvidersMap = {
label: 'Sandbox',
name: 'sandbox',
type: 'switch',
description: 'Use the development APNS server.'
description:
'Enable sandbox mode for testing on apps signed with development provisioning profiles. <a class="link" href="https://appwrite.io/docs/products/messaging/apns#configure-provider" target="_blank" rel="noopener noreferrer">Learn more</a>.'
}
]
}