Skip to content

Commit 84f0d2d

Browse files
[IF-5555_5557-FIX] Deleted AsyncImageSvg() size build parameter
1 parent 5661837 commit 84f0d2d

File tree

1 file changed

+0
-2
lines changed
  • components/src/main/java/com/ifeel/components/ui/components/utils

1 file changed

+0
-2
lines changed

components/src/main/java/com/ifeel/components/ui/components/utils/AsyncImageSvg.kt

-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import androidx.compose.ui.unit.dp
1212
import coil.compose.rememberAsyncImagePainter
1313
import coil.decode.SvgDecoder
1414
import coil.request.ImageRequest
15-
import coil.size.Size
1615

1716
/**
1817
* A composable function that displays an SVG image asynchronously from a given URL. It uses a painter
@@ -32,7 +31,6 @@ internal fun AsyncImageSvg(
3231
model = ImageRequest.Builder(LocalContext.current)
3332
.decoderFactory(SvgDecoder.Factory())
3433
.data(url)
35-
.size(Size.ORIGINAL)
3634
.build()
3735
)
3836

0 commit comments

Comments
 (0)