Skip to content

Commit 5d3ffa9

Browse files
committed
fix: Google calendar not yet supported
1 parent 6655399 commit 5d3ffa9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/preferences/view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def on_reset_app_clicked(self, e):
119119
title="Are You Sure?",
120120
description=f"Are you sure you wish to reset the app?\nThis will clear all your data.",
121121
on_proceed=self.on_reset_app_confirmed,
122-
proceed_button_label="Yes! Reset",
122+
proceed_button_label="Reset and Clear Data",
123123
)
124124
self.pop_up_handler.open_dialog()
125125

tuttle/cloud.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414

1515
class CloudProvider(Enum):
16-
Google = "Google"
16+
# TODO: add more cloud providers
17+
# Google = "Google"
1718
ICloud = "iCloud"
1819

1920
def __str__(self) -> str:

0 commit comments

Comments
 (0)