chromium: fix typo in `update.mjs`

It's committer, not commiter.

Slipped through 9b4cbadf484fbc1af19349ff48cacfee6ff46fb6.

+1 -1
+1 -1
pkgs/applications/networking/browsers/chromium/update.mjs
··· 153 153 const response = await (await fetch(url)).text() 154 154 const json = JSON.parse(response.replace(`)]}'\n`, '')) 155 155 156 - const date = new Date(json.commiter.time) 156 + const date = new Date(json.committer.time) 157 157 return date.toISOString().split("T")[0] 158 158 } 159 159