Compare commits

..

No commits in common. "cbfb835b4f87958a190f2645a16eb2a77d15562e" and "0b0283127b51d8cdd7c66af5b8db8719e3531768" have entirely different histories.

5 changed files with 4 additions and 9 deletions

View File

@ -62,7 +62,7 @@ jobs:
docker build \ docker build \
-t $REGISTRY/frontend:${{ github.sha }} \ -t $REGISTRY/frontend:${{ github.sha }} \
-t $REGISTRY/frontend:latest \ -t $REGISTRY/frontend:latest \
-f frontend/Dockerfile frontend/ -f frontend/Dockerfile.dev frontend/
- name: Push Frontend Image - name: Push Frontend Image
run: | run: |

View File

@ -1,6 +0,0 @@
import React from 'react';
declare module './App' {
const App: React.FC;
export default App;
}

View File

@ -1,4 +1,4 @@
import type { GroceryItemType } from "../../types"; import type { GroceryItemType } from "../types";
interface Props { interface Props {
item: GroceryItemType; item: GroceryItemType;

View File

@ -1,3 +1,4 @@
import React from "react";
interface Props { interface Props {
suggestions: string[]; suggestions: string[];

View File

@ -1,6 +1,6 @@
import { StrictMode } from 'react' import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client' import { createRoot } from 'react-dom/client'
import App from './App' import App from './App.jsx'
import './index.css' import './index.css'
import './styles/theme.css' import './styles/theme.css'