From 8cd045fa9e309e1cd6798a464bcc25201dbc99a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joonas=20Sepp=C3=A4?= <joasep@utu.fi>
Date: Sun, 12 Mar 2023 18:06:39 +0200
Subject: [PATCH] Adding temporary test buttons, to make sure that Heroku is
 running the most recent version of the App, so that deployment to Heroku is
 confirmed to work now

---
 messages-app-frontend/src/App.tsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/messages-app-frontend/src/App.tsx b/messages-app-frontend/src/App.tsx
index 0dc1d88..a1eac57 100644
--- a/messages-app-frontend/src/App.tsx
+++ b/messages-app-frontend/src/App.tsx
@@ -158,7 +158,9 @@ export default class App extends React.Component{
           <Box sx={{textAlign: "center", paddingTop: 5}}>
             <Input value={this.state.newMessage} onChange={(p) => this.setState({newMessage: p.target.value})}></Input>
             <Button /*color="success"*/ sx={{margin: 1.5}} variant="contained" endIcon={<SendIcon />} onClick={this.createMessage}>Send</Button>
+            <Button variant='contained'>TEST BUTTON</Button>
           </Box>
+          <Button variant='contained'>TEST BUTTON</Button>
 
         </Container>
 
-- 
GitLab