Update DiscordMessages.svelte text/typo

Changing Typo in: "Premium users can receive messages in real-time and response to tickets through the dashboard"
to
"Premium users can receive messages in real-time and respond to tickets through the dashboard"
This commit is contained in:
Scott Brown 2022-07-29 11:18:08 -07:00 committed by GitHub
parent 19826368ff
commit 3768d2d93b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@
<div class="input-container"> <div class="input-container">
<form on:submit|preventDefault={sendMessage}> <form on:submit|preventDefault={sendMessage}>
<input type="text" class="message-input" bind:value={sendContent} disabled={!isPremium} <input type="text" class="message-input" bind:value={sendContent} disabled={!isPremium}
placeholder="{isPremium ? `Message #ticket-${ticketId}` : 'Premium users can receive messages in real-time and response to tickets through the dashboard'}"> placeholder="{isPremium ? `Message #ticket-${ticketId}` : 'Premium users can receive messages in real-time and respond to tickets through the dashboard'}">
</form> </form>
</div> </div>
</div> </div>