File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ async function getOpenSpots(): Promise<CommentTableRow[]> {
1717 const message : GetOpenSpotsMessage = { type : 'GET_OPEN_SPOTS' }
1818 const response = ( await browser . runtime . sendMessage ( message ) ) as GetTableRowsResponse
1919 logger . debug ( 'Received response:' , response )
20- return response . rows || [ ]
20+ return response . rows
2121 } catch ( error ) {
2222 logger . error ( 'Error sending message to background:' , error )
2323 return [ ]
Original file line number Diff line number Diff line change 1- @import "tailwindcss" ;
1+ @import "tailwindcss" source( "../../.." ) ;
22/* Popup window frame styles */
33: root {
44 --popup-width : 600px ;
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ export default defineConfig({
1414 '@' : path . resolve ( './src' ) ,
1515 } ,
1616 } ,
17+ root : 'tests/playground' ,
1718 server : {
1819 host : true ,
1920 open : true ,
You can’t perform that action at this time.
0 commit comments