Use plan title if one is set - 1.156 🚀

Closes #170
This commit is contained in:
Brandon Presley 2023-09-07 14:49:25 +12:00
parent c480d3e382
commit 07cb634883
3 changed files with 6 additions and 4 deletions

View File

@ -118,7 +118,9 @@ export default function StartPlan() {
return (
<>
<StackHeader title={params.plan.days.replace(/,/g, ", ")}>
<StackHeader
title={params.plan.title || params.plan.days.replace(/,/g, ", ")}
>
<IconButton
onPress={() => navigation.navigate("EditPlan", { plan: params.plan })}
icon="edit"

View File

@ -85,8 +85,8 @@ android {
applicationId "com.massive"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 36181
versionName "1.155"
versionCode 36182
versionName "1.156"
}
signingConfigs {
release {

View File

@ -1,6 +1,6 @@
{
"name": "massive",
"version": "1.155",
"version": "1.156",
"private": true,
"license": "GPL-3.0-only",
"scripts": {