Skip to content

Commit 985231e

Browse files
committed
Visit vrc data analysis on link click
1 parent 956be8f commit 985231e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/com/sunkensplashstudios/VRCRoboScout/TrueSkillView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ fun TrueSkillView(navController: NavController) {
126126
// link to trueskill page
127127
IconButton(
128128
onClick = {
129-
// TODO: placeholder for URL
129+
uriHandler.openUri("https://vrc-data-analysis.com/");
130130
},
131131
modifier = Modifier.padding(horizontal = 5.dp)
132132
) {
@@ -199,7 +199,7 @@ fun TrueSkillView(navController: NavController) {
199199
DropdownMenuItem(
200200
text = { Text("Region") },
201201
children = {
202-
API.regionsMap.toSortedMap().forEach { (name, id) ->
202+
API.regionsMap.toSortedMap().forEach { (name) ->
203203
HorizontalDivider(
204204
color = Color.Gray.copy(alpha = 0.1f),
205205
thickness = 0.5.dp,

0 commit comments

Comments
 (0)