Skip to content

Commit

Permalink
Fix detekt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JorgeMucientes committed Jan 18, 2024
1 parent f536924 commit 087b6ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BlazeRepository @Inject constructor(
private val timezoneProvider: TimezoneProvider,
) {
companion object {
const val DEFAULT_CURRENCY_CODE = "USD" // For now only USD are supported
const val DEFAULT_CURRENCY_CODE = "USD" // For now only USD are supported
const val DEFAULT_CAMPAIGN_DURATION = 7 // Days
const val DEFAULT_CAMPAIGN_TOTAL_BUDGET = 35F // USD
const val ONE_DAY_IN_MILLIS = 1000 * 60 * 60 * 24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class BlazeCampaignCreationPreviewViewModel @Inject constructor(

init {
launch {
@Suppress("MagicNumber")
delay(3000)
_viewState.value = _viewState.value?.copy(isLoading = false)
}
Expand Down

0 comments on commit 087b6ce

Please sign in to comment.