diff --git a/.gitignore b/.gitignore index 4f15a56..585a9ed 100644 --- a/.gitignore +++ b/.gitignore @@ -127,6 +127,7 @@ dist # Stores VSCode versions used for testing VSCode extensions .vscode-test +.vscode # yarn v2 .yarn/cache diff --git a/backend/index.js b/backend/index.js index 3d25005..4167dbd 100644 --- a/backend/index.js +++ b/backend/index.js @@ -173,3 +173,5 @@ app.get('*', (req, res) => { app.listen(PORT, () => { console.log(`Server running on port ${PORT}`); }); + +// New payment flow \ No newline at end of file diff --git a/frontend/src/index.js b/frontend/src/index.js index 2ff7cd9..b40c0e9 100644 --- a/frontend/src/index.js +++ b/frontend/src/index.js @@ -9,4 +9,6 @@ root.render( -); \ No newline at end of file +); + +// New payment flow \ No newline at end of file