🎯 Trouble Shooting[ 1. 현재 위치에서 검색 시 정렬 버튼 동기화 오류 ]초기 화면에서 정렬 버튼을 눌러서 정렬을 한 뒤다른 곳으로 지도를 이동해서 현재 위치에서 검색을 누르면 정렬 버튼이별점순으로 변경되지 않는 문제가 있다. [ 1-1. Mutation 추가 ]enum Mutation { case setStore([StoreSection]) case shouldPop(Bool) case setCurrentLocation(lat: Double, lon: Double) case showLocationAlert case setWebViewUrl(String) case sortStore([StoreSection]) // 데이터 정렬 case dismi..