Skip to content

Commit

Permalink
Fjerner logging i konsollen
Browse files Browse the repository at this point in the history
  • Loading branch information
Martineem committed Jul 26, 2024
1 parent 230c931 commit 1e76557
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default () => {
res.map((r: FetchData) => optionsData.push(r))

}).catch(err => console.error(err));
console.log(optionsData)
setApiData(optionsData);
}
fetchData();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const AppstyringTable = ({data, setData}: { data: Array<FetchData>, setDa
</Table.Header>
<Table.Body>
{data.map((row: FetchData, idx: number) => {
console.log(row)
return (
<Table.Row key={row.navn + idx}>
<Table.DataCell width={'50%'}>{row.tekst}</Table.DataCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export const EditParameter = ({name, label, initialValue, options, data, setData
<ErrorBoundary>
<DollyModal isOpen={modalIsOpen} closeModal={closeModal} width={'40%'} overflow={'auto'}>
<form onSubmit={handleSubmit(({ value}) => {
console.log(value)
oppdaterParameterverdi(value)
})}>
<div className="modal">
Expand Down

0 comments on commit 1e76557

Please sign in to comment.