修改跳转方式
This commit is contained in:
parent
09fd4459d8
commit
43eb230dc6
|
@ -68,6 +68,12 @@ export default function NoticeItem({ navigation, leftIcon, hasLink, data }) {
|
|||
screen: "JoinStreamer",
|
||||
});
|
||||
return;
|
||||
} else if (
|
||||
linkStr.indexOf("CompleteStreamerInformation") != -1
|
||||
) {
|
||||
navigation.navigate("StreamerVerification", {
|
||||
screen: "CompleteStreamerInformation",
|
||||
});
|
||||
}
|
||||
navigation.navigate(linkStr);
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ export default function AfterSubmitGuildVerification({ navigation, route }) {
|
|||
</View>
|
||||
<View style={tailwind("flex flex-col w-full px-4")}>
|
||||
<Button
|
||||
onPress={() => navigation.goBack()}
|
||||
onPress={() => navigation.navigate("My")}
|
||||
color="#FFFFFF1A"
|
||||
radius="999"
|
||||
size="md"
|
||||
|
|
|
@ -103,7 +103,7 @@ export default function AfterSubmitStreamerVerification({ navigation, route }) {
|
|||
</View>
|
||||
</Button>
|
||||
<Button
|
||||
onPress={() => navigation.goBack()}
|
||||
onPress={() => navigation.navigate("My")}
|
||||
color="#FFFFFF1A"
|
||||
radius="999"
|
||||
size="md"
|
||||
|
|
Loading…
Reference in New Issue