Skip to content

Commit

Permalink
Refactor - AccountsScreen Icons to MifosIcons
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali committed Aug 25, 2024
1 parent 99e351a commit 56c185d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ci-prebuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ call :run_gradle_task "spotlessApply --no-configuration-cache"
call :run_gradle_task "dependencyGuardBaseline"
call :run_gradle_task "detekt"
call :run_gradle_task "testDemoDebug :lint:test :mifospay:lintProdRelease :lint:lint"
call :run_gradle_task ":lint:test :mifospay:lintProdRelease :lint:lint"
call :run_gradle_task ":mifospay:lintProdRelease"
call :run_gradle_task ":lint:lint"
call :run_gradle_task "build"
call :run_gradle_task "updateProdReleaseBadging"

Expand Down
5 changes: 4 additions & 1 deletion ci-prebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ tasks=(
"spotlessApply --no-configuration-cache"
"dependencyGuardBaseline"
"detekt"
"testDemoDebug :lint:test :mifospay:lintProdRelease :lint:lint"
"testDemoDebug"
":lint:test"
":lint:lint"
":mifospay:lintProdRelease"
"build"
"updateProdReleaseBadging"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.rounded.Info
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
Expand All @@ -37,6 +35,7 @@ import com.mifos.library.pullrefresh.pullRefresh
import com.mifos.library.pullrefresh.rememberPullRefreshState
import com.mifospay.core.model.domain.BankAccountDetails
import org.mifospay.core.designsystem.component.MfLoadingWheel
import org.mifospay.core.designsystem.icon.MifosIcons
import org.mifospay.core.ui.EmptyContentScreen
import org.mifospay.core.ui.utility.AddCardChip

Expand Down Expand Up @@ -95,7 +94,7 @@ private fun AccountScreen(
subTitle = stringResource(id = R.string.feature_accounts_unexpected_error_subtitle),
modifier = Modifier,
iconTint = MaterialTheme.colorScheme.onSurface,
iconImageVector = Icons.Rounded.Info,
iconImageVector = MifosIcons.Info,
)
}

Expand Down

0 comments on commit 56c185d

Please sign in to comment.