Fix navigating to view graph from start plan - 1.167 🚀

This commit is contained in:
Brandon Presley 2023-10-27 17:21:02 +13:00
parent c3f44fba03
commit 347423698d
4 changed files with 8 additions and 3 deletions

View File

@ -4,6 +4,7 @@ import EditSet from "./EditSet";
import { PlanPageParams } from "./plan-page-params";
import PlanList from "./PlanList";
import StartPlan from "./StartPlan";
import ViewGraph from "./ViewGraph";
const Stack = createStackNavigator<PlanPageParams>();
@ -16,6 +17,7 @@ export default function PlanPage() {
<Stack.Screen name="EditPlan" component={EditPlan} />
<Stack.Screen name="StartPlan" component={StartPlan} />
<Stack.Screen name="EditSet" component={EditSet} />
<Stack.Screen name="ViewGraph" component={ViewGraph} />
</Stack.Navigator>
);
}

View File

@ -85,8 +85,8 @@ android {
applicationId "com.massive"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 36192
versionName "1.166"
versionCode 36193
versionName "1.167"
}
signingConfigs {
release {

View File

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

View File

@ -13,4 +13,7 @@ export type PlanPageParams = {
EditSet: {
set: GymSet;
};
ViewGraph: {
name: string;
};
};