Skip to content
Snippets Groups Projects

lint 오류 수정

Merged Lee WooChang requested to merge fix/missing-eslint into main
1 file
+ 6
6
Compare changes
  • Side-by-side
  • Inline
@@ -82,17 +82,17 @@ const myRepository = {
return rowCount > 0;
},
async deleteCombinationById(combinationId) {
const query = `
async deleteCombinationById(combinationId) {
const query = `
UPDATE combinations
SET owner_id = NULL
WHERE id = $1
`;
const values = [combinationId];
const values = [combinationId];
const { rowCount } = await pool.query(query, values);
return rowCount > 0;
}
const { rowCount } = await pool.query(query, values);
return rowCount > 0;
},
};
export default myRepository;
Loading