Skip to content

Commit 6123cf7

Browse files
committed
set roaming type to default for Notification state utils
1 parent fdfc07c commit 6123cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/core/notifications/NotificationStateUtils.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import com.intellij.openapi.components.service
1212
import software.aws.toolkits.core.utils.ETagProvider
1313

1414
@Service
15-
@State(name = "notificationDismissals", storages = [Storage("aws.xml", roamingType = RoamingType.DISABLED)])
15+
@State(name = "notificationDismissals", storages = [Storage("aws.xml")])
1616
class NotificationDismissalState : PersistentStateComponent<NotificationDismissalConfiguration> {
1717
private val state = NotificationDismissalConfiguration()
1818

@@ -41,7 +41,7 @@ data class NotificationDismissalConfiguration(
4141
)
4242

4343
@Service
44-
@State(name = "notificationEtag", storages = [Storage("aws.xml", roamingType = RoamingType.DISABLED)])
44+
@State(name = "notificationEtag", storages = [Storage("aws.xml")])
4545
class NotificationEtagState : PersistentStateComponent<NotificationEtagConfiguration>, ETagProvider {
4646
private val state = NotificationEtagConfiguration()
4747

0 commit comments

Comments
 (0)