Skip to content

Commit

Permalink
Merge pull request #1220 from appwrite/chore-update-support-window
Browse files Browse the repository at this point in the history
Update support window
  • Loading branch information
christyjacob4 authored Jul 22, 2024
2 parents a9a2b14 + c465c03 commit 841102f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/support.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
$organization?.billingPlan === BillingPlan.PRO ||
$organization?.billingPlan === BillingPlan.SCALE;
$: supportTimings = `${utcHourToLocaleHour('09:00')} - ${utcHourToLocaleHour('17:00')} ${localeTimezoneName()}`;
$: supportTimings = `${utcHourToLocaleHour('16:00')} - ${utcHourToLocaleHour('00:00')} ${localeTimezoneName()}`;
</script>

{#if isCloud}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/console/supportWizard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
$wizard.finalAction = handleSubmit;
const workTimings = {
start: '09:00',
end: '17:00',
start: '16:00',
end: '00:00',
startDay: 'Monday' as WeekDay,
endDay: 'Friday' as WeekDay
};
Expand Down
2 changes: 1 addition & 1 deletion src/routes/console/wizard/support/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function isSupportOnline() {
return false;
}

if (hour < 9 || hour > 17) {
if (hour < 14) {
return false;
}

Expand Down

0 comments on commit 841102f

Please sign in to comment.