@@ -47,7 +47,7 @@ const PreviewScreen = ({ route }: { route: any }) => {
<Image
style={styles.usersMap}
source={{
- uri: `${API_HOST}/img/single_maps/${data.id}.png`
+ uri: `${API_HOST}/img/single_maps/${data.id}.png?random=${Date.now()}`
}}
resizeMode="cover"
/>
@@ -252,7 +252,7 @@ const ProfileScreen: FC<Props> = ({ navigation, route }) => {
>
- uri: `${API_HOST}/img/single_maps/${isPublicView ? route.params?.userId : currentUserId}.png`,
+ uri: `${API_HOST}/img/single_maps/${isPublicView ? route.params?.userId : currentUserId}.png?random=${Date.now()}`,
cache: 'reload'