From 08d9f67f003cc9b6eda7b0a8ecc9d33176b4b6b8 Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 2 Mar 2021 11:00:59 +0800 Subject: [PATCH] fix: image name typo issue --- .../Onboarding/Welcome/View/WelcomeIllustrationView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift b/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift index 9c5008ee5..0e733b74e 100644 --- a/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift +++ b/Mastodon/Scene/Onboarding/Welcome/View/WelcomeIllustrationView.swift @@ -93,7 +93,7 @@ extension WelcomeIllustrationView { let elephantThreeOnGrassWithTreeFourImage = Asset.Welcome.Illustration.elephantThreeOnGrassWithTreeFour.image let elephantThreeOnGrassImage = Asset.Welcome.Illustration.elephantThreeOnGrass.image let elephantTwoImage = Asset.Welcome.Illustration.elephantTwo.image - let ineDashTwoImage = Asset.Welcome.Illustration.lineDashTwo.image + let lineDashTwoImage = Asset.Welcome.Illustration.lineDashTwo.image // let elephantOnAirplaneWithContrailImageView = Asset.Welcome.Illustration.elephantOnAirplaneWithContrail.image @@ -109,7 +109,7 @@ extension WelcomeIllustrationView { elephantThreeOnGrassImage.draw(at: CGPoint(x: 0, y: height - elephantThreeOnGrassImage.size.height)) // darw ineDashTwoImage - ineDashTwoImage.draw(at: CGPoint(x: 0.5 * elephantThreeOnGrassImage.size.width + 60, y: height - elephantThreeOnGrassImage.size.height - 50)) + lineDashTwoImage.draw(at: CGPoint(x: 0.5 * elephantThreeOnGrassImage.size.width + 60, y: height - elephantThreeOnGrassImage.size.height - 50)) // draw elephantTwo.image elephantTwoImage.draw(at: CGPoint(x: 0, y: height - elephantTwoImage.size.height - 125))